/
Dangerpro
/
Math_Modeling_Knyaginin
Обзор
Документация
Войти
/
Dangerpro
/
Math_Modeling_Knyaginin
Код
Запросы
0
Задачи
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
node_modules/node-telegram-bot-api/index.js
13 строк
504 B
Dangerpro
Создал бота
02 дек 2024, 14:16
02 дек 2024, 14:16
6f458d6
Код
Авторство
О чём код?
/** * If running on Nodejs 5.x and below, we load the transpiled code. * Otherwise, we use the ES6 code. * We are deprecating support for Node.js v5.x and below. */ const majorVersion = parseInt(process.versions.node.split('.')[0], 10); if (majorVersion <= 5) { const deprecate = require('./src/utils').deprecate; deprecate('Node.js v5.x and below will no longer be supported in the future'); module.exports = require('./lib/telegram'); } else { module.exports = require('./src/telegram'); }