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,20 +4,19 @@ import createCompounder from './_createCompounder.js';
* Converts `string`, as space separated words, to upper case.
*
* @static
* @memberOf _
* @since 4.0.0
* @category String
* @param {string} [string=''] The string to convert.
* @returns {string} Returns the upper cased string.
* @example
*
* _.upperCase('--foo-bar');
* upperCase('--foo-bar');
* // => 'FOO BAR'
*
* _.upperCase('fooBar');
* upperCase('fooBar');
* // => 'FOO BAR'
*
* _.upperCase('__foo_bar__');
* upperCase('__foo_bar__');
* // => 'FOO BAR'
*/
const upperCase = createCompounder((result, word, index) =>