Sha256: e081dd1ea72d8af8c58aeee73507dba154f101cbe7831a0f269139c268eed311

Contents?: true

Size: 680 Bytes

Versions: 153

Compression:

Stored size: 680 Bytes

Contents

var createCompounder = require('../internal/createCompounder');

/**
 * Converts `string` to [camel case](https://en.wikipedia.org/wiki/CamelCase).
 *
 * @static
 * @memberOf _
 * @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 ? (word.charAt(0).toUpperCase() + word.slice(1)) : word);
});

module.exports = camelCase;

Version data entries

153 entries across 80 versions & 8 rubygems

Version Path
ilog-0.4.1 node_modules/contents/node_modules/lodash/string/camelCase.js
ilog-0.4.1 node_modules/babel-plugin-proto-to-assign/node_modules/lodash/string/camelCase.js
ilog-0.4.1 node_modules/babel/node_modules/lodash/string/camelCase.js
ilog-0.4.0 node_modules/babel/node_modules/lodash/string/camelCase.js
ilog-0.4.0 node_modules/contents/node_modules/lodash/string/camelCase.js
ilog-0.4.0 node_modules/babel-plugin-proto-to-assign/node_modules/lodash/string/camelCase.js
ilog-0.3.3 node_modules/babel/node_modules/lodash/string/camelCase.js
ilog-0.3.3 node_modules/contents/node_modules/lodash/string/camelCase.js
ilog-0.3.3 node_modules/babel-plugin-proto-to-assign/node_modules/lodash/string/camelCase.js
trusty-festivity-extension-2.6.3 node_modules/bower/node_modules/configstore/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/string/camelCase.js
trusty-festivity-extension-2.6.3 node_modules/bower/node_modules/inquirer/node_modules/lodash/string/camelCase.js
trusty-festivity-extension-2.6.2 node_modules/bower/node_modules/configstore/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/string/camelCase.js
trusty-festivity-extension-2.6.2 node_modules/bower/node_modules/inquirer/node_modules/lodash/string/camelCase.js
trusty-festivity-extension-2.6.1 node_modules/bower/node_modules/configstore/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/string/camelCase.js
trusty-festivity-extension-2.6.1 node_modules/bower/node_modules/inquirer/node_modules/lodash/string/camelCase.js
xcodebuild-helper-1.2.5 externals/ios-sim-master/node_modules/lodash/string/camelCase.js
trusty-festivity-extension-2.6 node_modules/bower/node_modules/configstore/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/string/camelCase.js
trusty-festivity-extension-2.6 node_modules/bower/node_modules/inquirer/node_modules/lodash/string/camelCase.js
trusty-festivity-extension-2.5.19 node_modules/bower/node_modules/configstore/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/string/camelCase.js
trusty-festivity-extension-2.5.19 node_modules/bower/node_modules/inquirer/node_modules/lodash/string/camelCase.js