Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
chain-able-deps / dist / string / firstToLowerCase.js
Size: Mime:
"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