summaryrefslogtreecommitdiff
path: root/tools/eslint/node_modules/lodash/internal/createCache.js
diff options
context:
space:
mode:
Diffstat (limited to 'tools/eslint/node_modules/lodash/internal/createCache.js')
-rw-r--r--tools/eslint/node_modules/lodash/internal/createCache.js21
1 files changed, 0 insertions, 21 deletions
diff --git a/tools/eslint/node_modules/lodash/internal/createCache.js b/tools/eslint/node_modules/lodash/internal/createCache.js
deleted file mode 100644
index 025e5662ab..0000000000
--- a/tools/eslint/node_modules/lodash/internal/createCache.js
+++ /dev/null
@@ -1,21 +0,0 @@
-var SetCache = require('./SetCache'),
- getNative = require('./getNative');
-
-/** Native method references. */
-var Set = getNative(global, 'Set');
-
-/* Native method references for those with the same name as other `lodash` methods. */
-var nativeCreate = getNative(Object, 'create');
-
-/**
- * Creates a `Set` cache object to optimize linear searches of large arrays.
- *
- * @private
- * @param {Array} [values] The values to cache.
- * @returns {null|Object} Returns the new cache object if `Set` is supported, else `null`.
- */
-function createCache(values) {
- return (nativeCreate && Set) ? new SetCache(values) : null;
-}
-
-module.exports = createCache;