UNPKG

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

13 lines 553 B
/** * @param s A string in camel, pascal, snake, kebab and spaced case format. * @returns A string in start case. * @example toStartCase("convertMy_string") === "Convert My String" */ export default function toStartCase(s: string): string; /** * @param s A string in camel, pascal, snake, kebab and spaced case format. * @returns A list of strings in title case. * @example toStartCase("convertMy_string") === ["Convert", "My", "String"] */ export declare function toStartCaseWords(s: string): string[]; //# sourceMappingURL=toStartCase.d.ts.map