Urara-Blog/node_modules/.pnpm-store/v3/files/94/a4c070f76956337a4579072cd1594ca049c19872352c007ed0ea0e67efa30e93061ed557d5021b0ac3e3fe48d77e866a2fec1fc23c9702d2879c6f10628050
2022-08-14 01:14:53 +08:00

29 lines
701 B
Text

var capitalize = require('./capitalize'),
createCompounder = require('./_createCompounder');
/**
* 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');
* // => 'fooBar'
*
* _.camelCase('--foo-bar--');
* // => 'fooBar'
*
* _.camelCase('__FOO_BAR__');
* // => 'fooBar'
*/
var camelCase = createCompounder(function(result, word, index) {
word = word.toLowerCase();
return result + (index ? capitalize(word) : word);
});
module.exports = camelCase;