summaryrefslogtreecommitdiff
path: root/includes/external/school/node_modules/lodash/_flatRest.js
diff options
context:
space:
mode:
Diffstat (limited to 'includes/external/school/node_modules/lodash/_flatRest.js')
-rw-r--r--includes/external/school/node_modules/lodash/_flatRest.js16
1 files changed, 0 insertions, 16 deletions
diff --git a/includes/external/school/node_modules/lodash/_flatRest.js b/includes/external/school/node_modules/lodash/_flatRest.js
deleted file mode 100644
index 94ab6cc..0000000
--- a/includes/external/school/node_modules/lodash/_flatRest.js
+++ /dev/null
@@ -1,16 +0,0 @@
-var flatten = require('./flatten'),
- overRest = require('./_overRest'),
- setToString = require('./_setToString');
-
-/**
- * A specialized version of `baseRest` which flattens the rest array.
- *
- * @private
- * @param {Function} func The function to apply a rest parameter to.
- * @returns {Function} Returns the new function.
- */
-function flatRest(func) {
- return setToString(overRest(func, undefined, flatten), func + '');
-}
-
-module.exports = flatRest;