mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-01-31 15:27:50 +00:00
19 lines
462 B
JavaScript
19 lines
462 B
JavaScript
import arrayReduce from './arrayReduce';
|
|
import deburr from '../deburr';
|
|
import words from '../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, '');
|
|
};
|
|
}
|
|
|
|
export default createCompounder;
|