Files
Remote-Control-Center/mc_test/node_modules/http2-wrapper/source/utils/proxy-events.js
2025-11-25 09:56:15 +03:00

8 lines
149 B
JavaScript
Executable File

'use strict';
module.exports = (from, to, events) => {
for (const event of events) {
from.on(event, (...args) => to.emit(event, ...args));
}
};