summaryrefslogtreecommitdiff
path: root/alarm/node_modules/lodash/_arraySample.js
diff options
context:
space:
mode:
Diffstat (limited to 'alarm/node_modules/lodash/_arraySample.js')
-rw-r--r--alarm/node_modules/lodash/_arraySample.js15
1 files changed, 0 insertions, 15 deletions
diff --git a/alarm/node_modules/lodash/_arraySample.js b/alarm/node_modules/lodash/_arraySample.js
deleted file mode 100644
index fcab010..0000000
--- a/alarm/node_modules/lodash/_arraySample.js
+++ /dev/null
@@ -1,15 +0,0 @@
-var baseRandom = require('./_baseRandom');
-
-/**
- * A specialized version of `_.sample` for arrays.
- *
- * @private
- * @param {Array} array The array to sample.
- * @returns {*} Returns the random element.
- */
-function arraySample(array) {
- var length = array.length;
- return length ? array[baseRandom(0, length - 1)] : undefined;
-}
-
-module.exports = arraySample;