智慧水务管理系统 - 精河县供水工程综合管理平台

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;