mirror of
https://github.com/xfarrow/blink
synced 2025-06-27 09:03:02 +02:00
Change endpoint from persons to people
This commit is contained in:
16
backend/apis/nodejs/node_modules/lodash/_mapCacheGet.js
generated
vendored
Normal file
16
backend/apis/nodejs/node_modules/lodash/_mapCacheGet.js
generated
vendored
Normal file
@ -0,0 +1,16 @@
|
||||
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;
|
Reference in New Issue
Block a user