/
asias
/
new
Обзор
Документация
Войти
/
asias
/
new
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
node_modules/underscore/cjs/value.js
9 строк
346 B
AnastasyaDemina
project
07 дек 2025, 23:03
07 дек 2025, 23:03
7c21e25
Код
Авторство
О чём код?
// Extract the result from a wrapped (and possibly chained) object. // This function is also aliased as `valueOf` and `toJSON`, which provide // unwrapping proxies for some methods used in engine operations such as // arithmetic and JSON stringification. function value(wrapper) { return wrapper._wrapped || wrapper; } module.exports = value;