hypertune
Version:
[Hypertune](https://www.hypertune.com/) is the most flexible platform for feature flags, A/B testing, analytics and app configuration. Built with full end-to-end type-safety, Git-style version control and local, synchronous, in-memory flag evaluation. Opt
7 lines • 301 B
TypeScript
/**
* @param s A string in camel, pascal, snake, kebab and spaced case format.
* @returns The string broken into an array of words.
* @example toWords("convertMy_string") === ["convert", "My", "string"]
*/
export default function toWords(s: string): string[];
//# sourceMappingURL=toWords.d.ts.map