newmax-utils
Version:
Utils & Libs for Newmax Tech
8 lines (7 loc) • 331 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.uncapitalize = exports.capitalize = void 0;
const capitalize = (str) => str[0].toUpperCase() + str.slice(1);
exports.capitalize = capitalize;
const uncapitalize = (str) => str[0].toLowerCase() + str.slice(1);
exports.uncapitalize = uncapitalize;