%PDF- %PDF-
Direktori : /var/www/html/node_modules/lodash-es/ |
Current File : //var/www/html/node_modules/lodash-es/_getMapData.js |
import isKeyable from './_isKeyable.js'; /** * 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; } export default getMapData;