1
0
mirror of https://github.com/thangisme/notes.git synced 2024-09-28 00:05:55 -04:00
notes/node_modules/lodash/_overArg.js

16 lines
382 B
JavaScript
Raw Normal View History

2017-03-09 13:16:08 -05:00
/**
* Creates a unary function that invokes `func` with its argument transformed.
*
* @private
* @param {Function} func The function to wrap.
* @param {Function} transform The argument transform.
* @returns {Function} Returns the new function.
*/
function overArg(func, transform) {
return function(arg) {
return func(transform(arg));
};
}
module.exports = overArg;