/
asias
/
new
Обзор
Документация
Войти
/
asias
/
new
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
node_modules/underscore/cjs/_bindCb.js
10 строк
306 B
AnastasyaDemina
project
07 дек 2025, 23:03
07 дек 2025, 23:03
7c21e25
Код
Авторство
О чём код?
// Internal function that returns a bound version of the passed-in callback, to // be repeatedly applied in other Underscore functions. function bindCb(func, context) { if (context === void 0) return func; return function() { return func.apply(context, arguments); }; } module.exports = bindCb;