mirror of
https://github.com/Expand-sys/ccashfrontend
synced 2025-12-20 16:42:13 +11:00
7 lines
149 B
JavaScript
7 lines
149 B
JavaScript
'use strict';
|
|
|
|
module.exports = (from, to, events) => {
|
|
for (const event of events) {
|
|
from.on(event, (...args) => to.emit(event, ...args));
|
|
}
|
|
};
|