summaryrefslogtreecommitdiff
path: root/includes/external/school/node_modules/lodash/_baseShuffle.js
diff options
context:
space:
mode:
Diffstat (limited to 'includes/external/school/node_modules/lodash/_baseShuffle.js')
-rw-r--r--includes/external/school/node_modules/lodash/_baseShuffle.js15
1 files changed, 0 insertions, 15 deletions
diff --git a/includes/external/school/node_modules/lodash/_baseShuffle.js b/includes/external/school/node_modules/lodash/_baseShuffle.js
deleted file mode 100644
index 023077a..0000000
--- a/includes/external/school/node_modules/lodash/_baseShuffle.js
+++ /dev/null
@@ -1,15 +0,0 @@
-var shuffleSelf = require('./_shuffleSelf'),
- values = require('./values');
-
-/**
- * The base implementation of `_.shuffle`.
- *
- * @private
- * @param {Array|Object} collection The collection to shuffle.
- * @returns {Array} Returns the new shuffled array.
- */
-function baseShuffle(collection) {
- return shuffleSelf(values(collection));
-}
-
-module.exports = baseShuffle;