UNPKG

text-upper-case-first

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