Files
lodash/_mapClear.js
John-David Dalton ce259221bd Bump to v4.4.0.
2016-02-15 20:20:54 -08:00

20 lines
337 B
JavaScript

define(['./_Hash', './_Map'], function(Hash, Map) {
/**
* Removes all key-value entries from the map.
*
* @private
* @name clear
* @memberOf MapCache
*/
function mapClear() {
this.__data__ = {
'hash': new Hash,
'map': Map ? new Map : [],
'string': new Hash
};
}
return mapClear;
});