UNPKG

lower-case-first

Version:

Transforms the string with only the first character in lower case

5 lines (4 loc) 125 B
/** * Lower case the first character of an input string. */ export declare function lowerCaseFirst(input: string): string;