var mapCacheClear = ,
mapCacheDelete = ,
mapCacheGet = ,
mapCacheHas = ,
mapCacheSet = ;
/**
* Creates a map cache object to store key-value pairs.
*
* @private
* @constructor
* @param {Array} [entries] The key-value pairs to cache.
*/
// Add methods to `MapCache`.
. = mapCacheClear;
= mapCacheDelete;
. = mapCacheGet;
. = mapCacheHas;
. = mapCacheSet;
module.exports = MapCache;