diff options
Diffstat (limited to 'school/node_modules/lodash/_stackGet.js')
-rw-r--r-- | school/node_modules/lodash/_stackGet.js | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/school/node_modules/lodash/_stackGet.js b/school/node_modules/lodash/_stackGet.js new file mode 100644 index 0000000..1cdf004 --- /dev/null +++ b/school/node_modules/lodash/_stackGet.js @@ -0,0 +1,14 @@ +/** + * 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; |