summaryrefslogtreecommitdiff
path: root/includes/external/school/node_modules/lodash/_stackHas.js
diff options
context:
space:
mode:
Diffstat (limited to 'includes/external/school/node_modules/lodash/_stackHas.js')
-rw-r--r--includes/external/school/node_modules/lodash/_stackHas.js14
1 files changed, 0 insertions, 14 deletions
diff --git a/includes/external/school/node_modules/lodash/_stackHas.js b/includes/external/school/node_modules/lodash/_stackHas.js
deleted file mode 100644
index 16a3ad1..0000000
--- a/includes/external/school/node_modules/lodash/_stackHas.js
+++ /dev/null
@@ -1,14 +0,0 @@
-/**
- * Checks if a stack value for `key` exists.
- *
- * @private
- * @name has
- * @memberOf Stack
- * @param {string} key The key of the entry to check.
- * @returns {boolean} Returns `true` if an entry for `key` exists, else `false`.
- */
-function stackHas(key) {
- return this.__data__.has(key);
-}
-
-module.exports = stackHas;