1
0
mirror of https://github.com/thangisme/notes.git synced 2024-06-03 08:10:42 +00:00
notes/node_modules/lodash/_stackGet.js
Patrick Marsceill b7b0d0d7bf
Initial commit
2017-03-09 13:16:08 -05:00

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;