selfcarebot/node_modules/upper-case-first/dist/index.js
2023-03-30 06:02:54 +00:00

11 lines
No EOL
341 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.upperCaseFirst = void 0;
/**
* Upper case the first character of an input string.
*/
function upperCaseFirst(input) {
return input.charAt(0).toUpperCase() + input.substr(1);
}
exports.upperCaseFirst = upperCaseFirst;
//# sourceMappingURL=index.js.map