summaryrefslogtreecommitdiff
path: root/alarm/node_modules/lodash/_hashClear.js
diff options
context:
space:
mode:
Diffstat (limited to 'alarm/node_modules/lodash/_hashClear.js')
-rw-r--r--alarm/node_modules/lodash/_hashClear.js15
1 files changed, 0 insertions, 15 deletions
diff --git a/alarm/node_modules/lodash/_hashClear.js b/alarm/node_modules/lodash/_hashClear.js
deleted file mode 100644
index 5d4b70c..0000000
--- a/alarm/node_modules/lodash/_hashClear.js
+++ /dev/null
@@ -1,15 +0,0 @@
-var nativeCreate = require('./_nativeCreate');
-
-/**
- * Removes all key-value entries from the hash.
- *
- * @private
- * @name clear
- * @memberOf Hash
- */
-function hashClear() {
- this.__data__ = nativeCreate ? nativeCreate(null) : {};
- this.size = 0;
-}
-
-module.exports = hashClear;