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

@@ -5,20 +5,19 @@ import createCompounder from './_createCompounder.js';
* Converts `string` to [camel case](https://en.wikipedia.org/wiki/CamelCase).
*
* @static
* @memberOf _
* @since 3.0.0
* @category String
* @param {string} [string=''] The string to convert.
* @returns {string} Returns the camel cased string.
* @example
*
* _.camelCase('Foo Bar');
* camelCase('Foo Bar');
* // => 'fooBar'
*
* _.camelCase('--foo-bar--');
* camelCase('--foo-bar--');
* // => 'fooBar'
*
* _.camelCase('__FOO_BAR__');
* camelCase('__FOO_BAR__');
* // => 'fooBar'
*/
const camelCase = createCompounder((result, word, index) => {