UNPKG

hd-utils

Version:

A handy utils for modern JS developers

6 lines (5 loc) 171 B
/** * @description will turn the first character to lower case; * @example lowerFirst("Hello") // "hello" */ export default function lowerFirst(input: string): string;