summaryrefslogtreecommitdiff
path: root/includes/external/addressbook/node_modules/http2-wrapper/source/utils/proxy-events.js
blob: 35e2ae0759e811042f3cfeddccad0e104ecc44c3 (plain)
1
2
3
4
5
6
7
'use strict';

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