-
Notifications
You must be signed in to change notification settings - Fork 323
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(lowerCase): Add lowerCase function #166
Conversation
@bertyhell is attempting to deploy a commit to the Toss Team on Vercel. A member of the Team first needs to authorize it. |
# lowerCase | ||
|
||
문자열을 낮은 표기법으로 변환합니다. | ||
|
||
Lower 표기법은 여러 단어로 구성된 식별자의 각 단어를 소문자로 쓰고 단어를 공백( )으로 연결하는 명명 규칙입니다. 예를 들어 `lower case`처럼 씁니다. | ||
|
||
## 인터페이스 | ||
|
||
```typescript | ||
function lowerCase(str: string): string; | ||
``` | ||
|
||
### 파라미터 | ||
|
||
- `str` (`string`): 소문자로 변환할 문자열입니다. | ||
|
||
### 반환 값 | ||
|
||
(`string`) 소문자로 변환된 문자열입니다. | ||
|
||
## 예시 | ||
|
||
```typescript | ||
import { lowerCase } from 'es-toolkit/string'; | ||
|
||
lowerCase('camelCase'); // returns 'camel case' | ||
lowerCase('some whitespace'); // returns 'some whitespace' | ||
lowerCase('hyphen-text'); // returns 'hyphen text' | ||
lowerCase('HTTPRequest'); // returns 'http request' | ||
``` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've translated it to make the Korean more natural.
# lowerCase | |
문자열을 낮은 표기법으로 변환합니다. | |
Lower 표기법은 여러 단어로 구성된 식별자의 각 단어를 소문자로 쓰고 단어를 공백( )으로 연결하는 명명 규칙입니다. 예를 들어 `lower case`처럼 씁니다. | |
## 인터페이스 | |
```typescript | |
function lowerCase(str: string): string; | |
``` | |
### 파라미터 | |
- `str` (`string`): 소문자로 변환할 문자열입니다. | |
### 반환 값 | |
(`string`) 소문자로 변환된 문자열입니다. | |
## 예시 | |
```typescript | |
import { lowerCase } from 'es-toolkit/string'; | |
lowerCase('camelCase'); // returns 'camel case' | |
lowerCase('some whitespace'); // returns 'some whitespace' | |
lowerCase('hyphen-text'); // returns 'hyphen text' | |
lowerCase('HTTPRequest'); // returns 'http request' | |
``` | |
# lowerCase | |
주어진 문자열을 소문자로 변환해요. | |
Lower Case 표기법은 여러 단어로 구성된 식별자의 각 단어를 소문자로 쓰고 단어를 공백으로 연결하는 네이밍 컨벤션이에요. 예를 들어 `lower case`처럼요. | |
## 인터페이스 | |
```typescript | |
function lowerCase(str: string): string; | |
``` | |
### 파라미터 | |
- `str` (`string`): 소문자로 변환할 문자열이에요. | |
### 반환 값 | |
(`string`) 소문자로 변환된 문자열이에요. | |
## 예시 | |
```typescript | |
import { lowerCase } from 'es-toolkit/string'; | |
lowerCase('camelCase'); // 'camel case'를 반환해요. | |
lowerCase('some whitespace'); // 'some whitespace'를 반환해요. | |
lowerCase('hyphen-text'); // 'hyphen text'를 반환해요. | |
lowerCase('HTTPRequest'); // 'http request'를 반환해요. | |
``` |
Co-authored-by: Evan Moon <bboydart91@gmail.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for your contribution!
similar to: https://lodash.com/docs/4.17.15#lowerCase
similar to this PR: #162
Usage: