Files
lodash/_hashClear.js
John-David Dalton dbe6a9008c Bump to v4.12.0.
2016-05-08 12:30:27 -07:00

15 lines
264 B
JavaScript

var nativeCreate = require('./_nativeCreate');
/**
* Removes all key-value entries from the hash.
*
* @private
* @name clear
* @memberOf Hash
*/
function hashClear() {
this.__data__ = nativeCreate ? nativeCreate(null) : {};
}
module.exports = hashClear;