_hashClear.js 264 B

1234567891011121314
  1. var nativeCreate = require('./_nativeCreate');
  2. /**
  3. * Removes all key-value entries from the hash.
  4. *
  5. * @private
  6. * @name clear
  7. * @memberOf Hash
  8. */
  9. function hashClear() {
  10. this.__data__ = nativeCreate ? nativeCreate(null) : {};
  11. }
  12. module.exports = hashClear;