/
Dangerpro
/
Math_Modeling_Knyaginin
Обзор
Документация
Войти
/
Dangerpro
/
Math_Modeling_Knyaginin
Код
Запросы
0
Задачи
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
node_modules/lodash/_stackGet.js
14 строк
271 B
Dangerpro
Создал бота
02 дек 2024, 14:16
02 дек 2024, 14:16
6f458d6
Код
Авторство
О чём код?
/** * 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;