summaryrefslogtreecommitdiff
path: root/includes/external/school/node_modules/lodash/_arrayShuffle.js
diff options
context:
space:
mode:
Diffstat (limited to 'includes/external/school/node_modules/lodash/_arrayShuffle.js')
-rw-r--r--includes/external/school/node_modules/lodash/_arrayShuffle.js15
1 files changed, 0 insertions, 15 deletions
diff --git a/includes/external/school/node_modules/lodash/_arrayShuffle.js b/includes/external/school/node_modules/lodash/_arrayShuffle.js
deleted file mode 100644
index 46313a3..0000000
--- a/includes/external/school/node_modules/lodash/_arrayShuffle.js
+++ /dev/null
@@ -1,15 +0,0 @@
-var copyArray = require('./_copyArray'),
- shuffleSelf = require('./_shuffleSelf');
-
-/**
- * A specialized version of `_.shuffle` for arrays.
- *
- * @private
- * @param {Array} array The array to shuffle.
- * @returns {Array} Returns the new shuffled array.
- */
-function arrayShuffle(array) {
- return shuffleSelf(copyArray(array));
-}
-
-module.exports = arrayShuffle;