UNPKG

@technobuddha/library

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