Skip to content

unicodeToArray() function

유니코드 string을 배열로 변환합니다.

Signature:

typescript
declare function unicodeToArray(string: string): [] | RegExpMatchArray;

Example

ts
unicodeToArray("🙇‍♂️🤩😭"); // ['🙇‍♂️','🤩','😭'];

Open Source Code

Released under the Apache-2.0 License.