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

_listCacheGet.js
نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
var assocIndexOf = require('./_assocIndexOf');
/** * Gets the list cache value for `key`. * * @private * @name get * @memberOf ListCache * @param {string} key The key of the value to get. * @returns {*} Returns the entry value. */function listCacheGet(key) { var data = this.__data__, index = assocIndexOf(data, key);
return index < 0 ? undefined : data[index][1];}
module.exports = listCacheGet;
lodash

Version Info

Tagged at
3 years ago

External Dependencies

No external dependencies 🎉