Files
lodash/_createCompounder.js
John-David Dalton 7293d39642 Bump to v4.1.0.
2016-01-29 01:14:13 -08:00

18 lines
470 B
JavaScript

define(['./_arrayReduce', './deburr', './words'], function(arrayReduce, deburr, 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, '');
};
}
return createCompounder;
});