source: imaps-frontend/node_modules/lodash-es/_mapCacheGet.js@ d565449

main
Last change on this file since d565449 was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago

Update repo after prototype presentation

  • Property mode set to 100644
File size: 328 bytes
RevLine 
[d565449]1import getMapData from './_getMapData.js';
2
3/**
4 * Gets the map value for `key`.
5 *
6 * @private
7 * @name get
8 * @memberOf MapCache
9 * @param {string} key The key of the value to get.
10 * @returns {*} Returns the entry value.
11 */
12function mapCacheGet(key) {
13 return getMapData(this, key).get(key);
14}
15
16export default mapCacheGet;
Note: See TracBrowser for help on using the repository browser.