mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-01 23:57:49 +00:00
Bump to v4.1.0.
This commit is contained in:
18
_createCompounder.js
Normal file
18
_createCompounder.js
Normal file
@@ -0,0 +1,18 @@
|
||||
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;
|
||||
Reference in New Issue
Block a user