source: imaps-frontend/node_modules/lodash-es/_stackGet.js

main
Last change on this file was d565449, checked in by stefan toskovski <stefantoska84@…>, 4 weeks ago

Update repo after prototype presentation

  • Property mode set to 100644
File size: 269 bytes
Line 
1/**
2 * Gets the stack value for `key`.
3 *
4 * @private
5 * @name get
6 * @memberOf Stack
7 * @param {string} key The key of the value to get.
8 * @returns {*} Returns the entry value.
9 */
10function stackGet(key) {
11 return this.__data__.get(key);
12}
13
14export default stackGet;
Note: See TracBrowser for help on using the repository browser.