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