UNPKG

hd-utils

Version:

A handy utils for modern JS developers

11 lines (10 loc) 304 B
/** * @description will turn the first character to lower case; * @example lowerFirst("Hello") // "hello" */ export default function lowerFirst(input) { if (typeof input !== 'string' || input.length === 0) { return input; } return input.charAt(0).toLowerCase() + input.slice(1); }