deno.land / x / lodash@4.17.19 / npm-package / _getMapData.js

_getMapData.js
نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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;
lodash

Version Info

Tagged at
3 years ago

External Dependencies

No external dependencies 🎉