/
dany
/
ReshenijaBotInformationSite
Обзор
Документация
Войти
/
dany
/
ReshenijaBotInformationSite
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
node_modules/underscore/cjs/_bindCb.js
10 строк
306 B
Daniil
Initial commit
31 окт 2023, 01:10
31 окт 2023, 01:10
a171ae1
Код
Авторство
О чём код?
// 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;