UNPKG

es-toolkit

Version:

A state-of-the-art, high-performance JavaScript utility library with a small bundle size and strong type annotations.

7 lines (5 loc) 251 B
const CASE_SPLIT_PATTERN = /\p{Lu}?\p{Ll}+|[0-9]+|\p{Lu}+(?!\p{Ll})|\p{Emoji_Presentation}|\p{Extended_Pictographic}|\p{L}+/gu; function words(str) { return Array.from(str.match(CASE_SPLIT_PATTERN) ?? []); } export { CASE_SPLIT_PATTERN, words };