Files
lodash/internal/createCompounder.js
John-David Dalton 0646bacd86 Bump to v4.0.0.
2016-01-12 08:28:18 -08:00

19 lines
473 B
JavaScript

var arrayReduce = require('./arrayReduce'),
deburr = require('../deburr'),
words = require('../words');
/**
* Creates a function like `_.camelCase`.
*
* @private
* @param {Function} callback The function to combine each word.
* @returns {Function} Returns the new compounder function.
*/
function createCompounder(callback) {
return function(string) {
return arrayReduce(words(deburr(string)), callback, '');
};
}
module.exports = createCompounder;