UNPKG

@technobuddha/library

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