mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
392 B
20 lines
392 B
9 years ago
|
var assocGet = require('./_assocGet');
|
||
|
|
||
|
/**
|
||
|
* Gets the stack value for `key`.
|
||
|
*
|
||
|
* @private
|
||
|
* @name get
|
||
|
* @memberOf Stack
|
||
|
* @param {string} key The key of the value to get.
|
||
|
* @returns {*} Returns the entry value.
|
||
|
*/
|
||
|
function stackGet(key) {
|
||
|
var data = this.__data__,
|
||
|
array = data.array;
|
||
|
|
||
|
return array ? assocGet(array, key) : data.map.get(key);
|
||
|
}
|
||
|
|
||
|
module.exports = stackGet;
|