Repository URL to install this package:
|
Version:
6.0.4 ▾
|
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
/**
* @name firstToLowerCase
* @since 2.0.0
* @memberOf string
* @param {string} str take first char to uppercase
* @return {string} str with uc first
* @example firstToLowerCase('EH') //=> 'eH'
*/
exports.default = (function (str) {
return str.charAt(0).toLowerCase() + str.slice(1);
});
//# sourceMappingURL=firstToLowerCase.js.map