summaryrefslogtreecommitdiff
path: root/includes/external/school/node_modules/lodash/_setToArray.js
diff options
context:
space:
mode:
Diffstat (limited to 'includes/external/school/node_modules/lodash/_setToArray.js')
-rw-r--r--includes/external/school/node_modules/lodash/_setToArray.js18
1 files changed, 0 insertions, 18 deletions
diff --git a/includes/external/school/node_modules/lodash/_setToArray.js b/includes/external/school/node_modules/lodash/_setToArray.js
deleted file mode 100644
index b87f074..0000000
--- a/includes/external/school/node_modules/lodash/_setToArray.js
+++ /dev/null
@@ -1,18 +0,0 @@
-/**
- * Converts `set` to an array of its values.
- *
- * @private
- * @param {Object} set The set to convert.
- * @returns {Array} Returns the values.
- */
-function setToArray(set) {
- var index = -1,
- result = Array(set.size);
-
- set.forEach(function(value) {
- result[++index] = value;
- });
- return result;
-}
-
-module.exports = setToArray;