Add fp files.

This commit is contained in:
John-David Dalton
2015-10-19 21:21:21 -07:00
parent 661e9b08b6
commit bdb5e4642f
14 changed files with 901 additions and 1 deletions

13
lib/fp/bower.js Normal file
View File

@@ -0,0 +1,13 @@
var baseConvert = require('./base.js');
/**
* Converts `lodash` to an auto-curried iteratee-first data-last version.
*
* @param {Function} lodash The lodash function.
* @returns {Function} Returns the converted lodash function.
*/
function bowerConvert(lodash) {
return baseConvert(lodash, lodash);
}
module.exports = bowerConvert;