aboutsummaryrefslogtreecommitdiff
path: root/sandbox/testAppNevena/Front/node_modules/lodash/_stackClear.js
diff options
context:
space:
mode:
Diffstat (limited to 'sandbox/testAppNevena/Front/node_modules/lodash/_stackClear.js')
-rw-r--r--sandbox/testAppNevena/Front/node_modules/lodash/_stackClear.js15
1 files changed, 0 insertions, 15 deletions
diff --git a/sandbox/testAppNevena/Front/node_modules/lodash/_stackClear.js b/sandbox/testAppNevena/Front/node_modules/lodash/_stackClear.js
deleted file mode 100644
index ce8e5a92..00000000
--- a/sandbox/testAppNevena/Front/node_modules/lodash/_stackClear.js
+++ /dev/null
@@ -1,15 +0,0 @@
-var ListCache = require('./_ListCache');
-
-/**
- * Removes all key-value entries from the stack.
- *
- * @private
- * @name clear
- * @memberOf Stack
- */
-function stackClear() {
- this.__data__ = new ListCache;
- this.size = 0;
-}
-
-module.exports = stackClear;