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, 14 insertions, 0 deletions
diff --git a/sandbox/testAppNevena/Front/node_modules/lodash/_stackHas.js b/sandbox/testAppNevena/Front/node_modules/lodash/_stackHas.js new file mode 100644 index 00000000..16a3ad11 --- /dev/null +++ b/sandbox/testAppNevena/Front/node_modules/lodash/_stackHas.js @@ -0,0 +1,14 @@ +/** + * 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; |