Repository URL to install this package:
|
Version:
6.0.4 ▾
|
declare const _default: (str: string) => string;
/**
* @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'
*/
export default _default;