UNPKG

text-upper-case-first

Version:
13 lines (12 loc) 349 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.upperCaseFirst = upperCaseFirst; /** * Upper case the first character of an input string. */ function upperCaseFirst(str) { // Handle null/undefined inputs gracefully if (!str) return ""; return str.charAt(0).toUpperCase() + str.substr(1); }