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    
@skava/modules / ___dist / chain-able / src / deps / string / firstToUpperCase.js
Size: Mime:
"use strict";

/**
 * @name firstToUpperCase
 * @since 2.0.0
 * @memberOf string
 * @param  {string} str take first char to uppercase
 * @return {string} str with uc first
 * @example firstToUpperCase('eh') //=> 'Eh'
 */
module.exports = str => str.charAt(0).toUpperCase() + str.slice(1);