Files
lodash/_hashClear.js
John-David Dalton 6f47eae67b Bump to v4.12.0.
2016-05-08 12:21:54 -07:00

16 lines
286 B
JavaScript

define(['./_nativeCreate'], function(nativeCreate) {
/**
* Removes all key-value entries from the hash.
*
* @private
* @name clear
* @memberOf Hash
*/
function hashClear() {
this.__data__ = nativeCreate ? nativeCreate(null) : {};
}
return hashClear;
});