Remove references to _.

This commit is contained in:
John-David Dalton
2017-01-09 17:38:33 -08:00
parent 65654f8f9e
commit 77cc37ba49
410 changed files with 875 additions and 1157 deletions

View File

@@ -4,17 +4,16 @@ import createCaseFirst from './_createCaseFirst.js';
* Converts the first character of `string` to upper case.
*
* @static
* @memberOf _
* @since 4.0.0
* @category String
* @param {string} [string=''] The string to convert.
* @returns {string} Returns the converted string.
* @example
*
* _.upperFirst('fred');
* upperFirst('fred');
* // => 'Fred'
*
* _.upperFirst('FRED');
* upperFirst('FRED');
* // => 'FRED'
*/
const upperFirst = createCaseFirst('toUpperCase');