diff options
Diffstat (limited to 'alarm/node_modules/lodash/_stackClear.js')
-rw-r--r-- | alarm/node_modules/lodash/_stackClear.js | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/alarm/node_modules/lodash/_stackClear.js b/alarm/node_modules/lodash/_stackClear.js deleted file mode 100644 index ce8e5a9..0000000 --- a/alarm/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; |