text-lower-case-first
Version:
Convert text with only the first character in lower case
13 lines (12 loc) • 349 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.lowerCaseFirst = lowerCaseFirst;
/**
* Lower case the first character of an input string.
*/
function lowerCaseFirst(str) {
// Handle null/undefined inputs gracefully
if (!str)
return "";
return str.charAt(0).toLowerCase() + str.substr(1);
}