UNPKG

@adaptabletools/adaptable-cjs

Version:

Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements

8 lines (7 loc) 274 B
/** * Split a string into words: handles camelCase, PascalCase, UPPER_CASE, * UPPER_SNAKE_CASE, snake_case, kebab-case, spaces, and dot.notation. * * Shared helper used by kebabCase, startCase, and sentenceCase. */ export default function words(str: string): string[];