Repository URL to install this package:
|
Version:
5.0.0-rc.11 ▾
|
'use strict';
Object.defineProperty(exports, '__esModule', { value: true });
var _ListCache = require('./_ListCache.js');
var _Map = require('./_Map.js');
var _Hash = require('./_Hash.js');
/**
* Removes all key-value entries from the map.
*
* @private
* @name clear
* @memberOf MapCache
*/
function mapCacheClear() {
this.size = 0;
this.__data__ = {
'hash': new _Hash.default,
'map': new (_Map.default || _ListCache.default),
'string': new _Hash.default
};
}
var _mapCacheClear = mapCacheClear;
exports.__moduleExports = _mapCacheClear;
exports.default = _mapCacheClear;
//# sourceMappingURL=_mapCacheClear.js.map