UNPKG

mbstring

Version:

Librairie offrant des méthodes permettant de gérer des chaines e caractères (string)

13 lines (12 loc) 321 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ucFirst = void 0; /** * Allow to capitalize the first character of string param * @param {string} str * @returns string */ const ucFirst = (str) => { return str[0].toUpperCase() + str.substring(1); }; exports.ucFirst = ucFirst;