summaryrefslogtreecommitdiff
path: root/includes/external/school/node_modules/lodash/_baseUnary.js
diff options
context:
space:
mode:
Diffstat (limited to 'includes/external/school/node_modules/lodash/_baseUnary.js')
-rw-r--r--includes/external/school/node_modules/lodash/_baseUnary.js14
1 files changed, 0 insertions, 14 deletions
diff --git a/includes/external/school/node_modules/lodash/_baseUnary.js b/includes/external/school/node_modules/lodash/_baseUnary.js
deleted file mode 100644
index 98639e9..0000000
--- a/includes/external/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;