/
githubmirror
/
Motrix
Обзор
Документация
Войти
/
githubmirror
/
Motrix
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/shared/aria2/lib/debug.js
23 строки
463 B
Dr_rOot
chore: upgrade aria2 version to 1.36 (#1411)
31 мар 2023, 15:08
Не верифицирован
31 мар 2023, 15:08
55e2a42
Код
Авторство
О чём код?
'use strict' import { inspect } from 'util' module.exports = (aria2) => { aria2.on('open', () => { console.log('aria2', 'OPEN') }) aria2.on('close', () => { console.log('aria2', 'CLOSE') }) aria2.on('input', (m) => { console.log('aria2', 'IN') console.log(inspect(m, { depth: null, colors: true })) }) aria2.on('output', (m) => { console.log('aria2', 'OUT') console.log(inspect(m, { depth: null, colors: true })) }) }