Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

_hashClear.js 281B

123456789101112131415
  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. this.size = 0;
  12. }
  13. module.exports = hashClear;