storybook
Version:
Storybook: Develop, document, and test UI components in isolation
10 lines (8 loc) • 307 B
JavaScript
// ../../node_modules/es-toolkit/dist/string/words.mjs
var CASE_SPLIT_PATTERN = new RegExp("\\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 {
words
};