00001 var Hash = require('./_Hash'),
00002 ListCache = require('./_ListCache'),
00003 Map = require('./_Map');
00004
00012 function mapCacheClear() {
00013 this.size = 0;
00014 this.__data__ = {
00015 'hash': new Hash,
00016 'map': new (Map || ListCache),
00017 'string': new Hash
00018 };
00019 }
00020
00021 module.exports = mapCacheClear;