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