-
Notifications
You must be signed in to change notification settings - Fork 100
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into docs/demo-in-docs
- Loading branch information
Showing
116 changed files
with
3,438 additions
and
1,544 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
--- | ||
title: canBe | ||
--- | ||
|
||
# canBeChoseong | ||
|
||
Check if a given character can be a choseong in Korean. | ||
|
||
```typescript | ||
function canBeChoseong(character: string): boolean; | ||
``` | ||
|
||
```typescript | ||
canBeChoseong('ㄱ'); // true | ||
canBeChoseong('ㅃ'); // true | ||
canBeChoseong('ㄱㅅ'); // false | ||
canBeChoseong('ㅏ'); // false | ||
canBeChoseong('가'); // false | ||
``` | ||
|
||
# canBeJungseong | ||
|
||
Check if a given character can be a jungseong in Korean. | ||
|
||
```typescript | ||
function canBeJungseong(character: string): boolean; | ||
``` | ||
|
||
```typescript | ||
canBeJungseong('ㅏ'); // true | ||
canBeJungseong('ㅗㅏ'); // true | ||
canBeJungseong('ㅏㅗ'); // false | ||
canBeJungseong('ㄱ'); // false | ||
canBeJungseong('ㄱㅅ'); // false | ||
canBeJungseong('가'); // false | ||
``` | ||
|
||
# canBeJongseong | ||
|
||
Check if a given character can be a jongseong in Korean. | ||
|
||
```typescript | ||
function canBeJongseong(character: string): boolean; | ||
``` | ||
|
||
```typescript | ||
canBeJongseong('ㄱ'); // true | ||
canBeJongseong('ㄱㅅ'); // true | ||
canBeJongseong('ㅎㄹ'); // false | ||
canBeJongseong('가'); // false | ||
canBeJongseong('ㅏ'); // false | ||
canBeJongseong('ㅗㅏ'); // false | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
--- | ||
title: canBe | ||
--- | ||
|
||
# canBeChoseong | ||
|
||
인자로 받은 문자가 초성으로 위치할 수 있는 문자인지 검사합니다. | ||
|
||
```typescript | ||
function canBeChoseong(character: string): boolean; | ||
``` | ||
|
||
```typescript | ||
canBeChoseong('ㄱ'); // true | ||
canBeChoseong('ㅃ'); // true | ||
canBeChoseong('ㄱㅅ'); // false | ||
canBeChoseong('ㅏ'); // false | ||
canBeChoseong('가'); // false | ||
``` | ||
|
||
# canBeJungseong | ||
|
||
인자로 받은 문자가 중성으로 위치할 수 있는 문자인지 검사합니다. | ||
|
||
```typescript | ||
function canBeJungseong(character: string): boolean; | ||
``` | ||
|
||
```typescript | ||
canBeJungseong('ㅏ'); // true | ||
canBeJungseong('ㅗㅏ'); // true | ||
canBeJungseong('ㅏㅗ'); // false | ||
canBeJungseong('ㄱ'); // false | ||
canBeJungseong('ㄱㅅ'); // false | ||
canBeJungseong('가'); // false | ||
``` | ||
|
||
# canBeJongseong | ||
|
||
인자로 받은 문자가 종성으로 위치할 수 있는 문자인지 검사합니다. | ||
|
||
```typescript | ||
function canBeJongseong(character: string): boolean; | ||
``` | ||
|
||
```typescript | ||
canBeJongseong('ㄱ'); // true | ||
canBeJongseong('ㄱㅅ'); // true | ||
canBeJongseong('ㅎㄹ'); // false | ||
canBeJongseong('가'); // false | ||
canBeJongseong('ㅏ'); // false | ||
canBeJongseong('ㅗㅏ'); // false | ||
``` |
Oops, something went wrong.