mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-21 03:25:12 +08:00
15 lines
271 B
JavaScript
15 lines
271 B
JavaScript
|
|
/**
|
||
|
|
* 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) {
|
||
|
|
return this.__data__.get(key);
|
||
|
|
}
|
||
|
|
|
||
|
|
module.exports = stackGet;
|