diff options
Diffstat (limited to 'sandbox/testAppNevena/Front/node_modules/lodash/_stackHas.js')
-rw-r--r-- | sandbox/testAppNevena/Front/node_modules/lodash/_stackHas.js | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/sandbox/testAppNevena/Front/node_modules/lodash/_stackHas.js b/sandbox/testAppNevena/Front/node_modules/lodash/_stackHas.js deleted file mode 100644 index 16a3ad11..00000000 --- a/sandbox/testAppNevena/Front/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; |