Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@doodle/i18n / dist / cjs / node_modules / lodash / _mapCacheClear.js
Size: Mime:
'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