Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/austingebauer/devise.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/lodash/_stackClear.js')
-rw-r--r--node_modules/lodash/_stackClear.js15
1 files changed, 0 insertions, 15 deletions
diff --git a/node_modules/lodash/_stackClear.js b/node_modules/lodash/_stackClear.js
deleted file mode 100644
index ce8e5a9..0000000
--- a/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;