c80204e89fd9a85ca0f3572923c51a8179fc7985de19636bc25054ccffde589914326e6aeeb161e86d3571e940ed89bc081eaba27c34e0e040eb4ca4c56385 279 B

123456789101112131415
  1. import nativeCreate from './_nativeCreate.js';
  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. this.size = 0;
  12. }
  13. export default hashClear;