/
githubmirror
/
Motrix
Обзор
Документация
Войти
/
githubmirror
/
Motrix
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/shared/aria2/lib/promiseEvent.js
20 строк
465 B
Shatyuka
fix: engine failed to quit
26 дек 2020, 04:03
26 дек 2020, 04:03
0f5398b
Код
Авторство
О чём код?
'use strict' module.exports = function promiseEvent (target, event) { return new Promise((resolve, reject) => { function cleanup () { target.removeListener(event, onEvent) target.removeListener('error', onError) } function onEvent (data) { resolve(data) cleanup() } function onError (err) { reject(err) cleanup() } target.addListener(event, onEvent) target.addListener('error', onError) }) }