@oxog/string
Version:
Comprehensive string manipulation utilities with zero dependencies
8 lines (7 loc) • 430 B
TypeScript
export declare function toCamelCase(str: string): string;
export declare function toPascalCase(str: string): string;
export declare function toSnakeCase(str: string): string;
export declare function toKebabCase(str: string): string;
export declare function toConstantCase(str: string): string;
export declare function toTitleCase(str: string, locale?: string): string;
export declare function toSentenceCase(str: string): string;