UNPKG

text-lower-case-first

Version:
10 lines (9 loc) 238 B
/** * Lower case the first character of an input string. */ export function lowerCaseFirst(str) { // Handle null/undefined inputs gracefully if (!str) return ""; return str.charAt(0).toLowerCase() + str.substr(1); }