Sha256: 76095488d813ea6627dff4cb3aa3033722ccec642aa4c9a596c571e509c84b9c
Contents?: true
Size: 330 Bytes
Versions: 302
Compression:
Stored size: 330 Bytes
Contents
var getMapData = require('./_getMapData'); /** * Gets the map value for `key`. * * @private * @name get * @memberOf MapCache * @param {string} key The key of the value to get. * @returns {*} Returns the entry value. */ function mapCacheGet(key) { return getMapData(this, key).get(key); } module.exports = mapCacheGet;
Version data entries
302 entries across 279 versions & 33 rubygems