/
lostSun
/
project-client-server-apps
Обзор
Документация
Войти
/
lostSun
/
project-client-server-apps
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
node_modules/underscore/amd/_applyProperty.js
14 строк
353 B
1lostsun
initial commit
05 май 2025, 11:35
05 май 2025, 11:35
fe8f535
Код
Авторство
О чём код?
define(function () { // 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); }; } return applyProperty; });