diff options
Diffstat (limited to 'school/node_modules/lodash/_baseUnary.js')
-rw-r--r-- | school/node_modules/lodash/_baseUnary.js | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/school/node_modules/lodash/_baseUnary.js b/school/node_modules/lodash/_baseUnary.js deleted file mode 100644 index 98639e9..0000000 --- a/school/node_modules/lodash/_baseUnary.js +++ /dev/null @@ -1,14 +0,0 @@ -/** - * The base implementation of `_.unary` without support for storing metadata. - * - * @private - * @param {Function} func The function to cap arguments for. - * @returns {Function} Returns the new capped function. - */ -function baseUnary(func) { - return function(value) { - return func(value); - }; -} - -module.exports = baseUnary; |