UNPKG

@technobuddha/library

Version:
10 lines (9 loc) 256 B
/** * Convert an identifier string to a kebab-case form * * @param input - The identifier string * @returns the identifier in kebab-case form * @group String * @category Case Conversion */ export declare function toKebabCase(input: string): string;