/
TON618OFF
/
FinalPWHTML
Обзор
Документация
Войти
/
TON618OFF
/
FinalPWHTML
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
node_modules/underscore/cjs/_applyProperty.js
10 строк
318 B
TON618OFF
не ну это ваще
23 июн 2024, 00:30
23 июн 2024, 00:30
e27ae20
Код
Авторство
О чём код?
// Internal helper that wraps an `iteratee` to call it with the // property of a closed-over `object`. Useful when iterating over // an array of keys of `object`. function applyProperty(iteratee, object) { return function(key) { return iteratee(object[key], key, object); }; } module.exports = applyProperty;