Skip to content
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

Merged
merged 5 commits into from
Jul 12, 2024

Conversation

bertyhell
Copy link
Contributor

@bertyhell bertyhell commented Jul 11, 2024

similar to: https://lodash.com/docs/4.17.15#lowerCase

similar to this PR: #162

Usage:

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'

@bertyhell bertyhell requested a review from raon0211 as a code owner July 11, 2024 20:08
Copy link

vercel bot commented Jul 11, 2024

@bertyhell is attempting to deploy a commit to the Toss Team on Vercel.

A member of the Team first needs to authorize it.

Comment on lines 1 to 30
# 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'
```
Copy link
Member

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.

Suggested change
# 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'를 반환해요.
```

Copy link
Collaborator

@raon0211 raon0211 left a 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!

@raon0211 raon0211 merged commit b1cb933 into toss:main Jul 12, 2024
6 of 7 checks passed
@bertyhell bertyhell deleted the feat/lower-case branch July 12, 2024 07:19
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants