lower-case-first
Version:
Transforms the string with only the first character in lower case
11 lines • 340 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.lowerCaseFirst = void 0;
/**
* Lower case the first character of an input string.
*/
function lowerCaseFirst(input) {
return input.charAt(0).toLowerCase() + input.slice(1);
}
exports.lowerCaseFirst = lowerCaseFirst;
//# sourceMappingURL=index.js.map