Sha256: 65d78bb9d058f742fae2416c00840b3f40e87a6b2155d4b2ab83b8d1c48c296a
Contents?: true
Size: 400 Bytes
Versions: 299
Compression:
Stored size: 400 Bytes
Contents
var isKeyable = require('./_isKeyable'); /** * Gets the data for `map`. * * @private * @param {Object} map The map to query. * @param {string} key The reference key. * @returns {*} Returns the map data. */ function getMapData(map, key) { var data = map.__data__; return isKeyable(key) ? data[typeof key == 'string' ? 'string' : 'hash'] : data.map; } module.exports = getMapData;
Version data entries
299 entries across 276 versions & 32 rubygems