UNPKG

camelcase-to-kebab

Version:
9 lines (8 loc) 261 B
/** * Converts a string from `camelCase` to `kebab-case`. * * @param input The string in `camelCase` to be converted * @returns The string in `kebab-case` */ export declare function camelCaseToKebab(input: string): string; export default camelCaseToKebab;