*Update dist

This commit is contained in:
Derrick Hammer 2023-04-16 05:48:53 -04:00
parent b04db8668b
commit b3d6fd4668
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 2 additions and 1 deletions

View File

@ -68,7 +68,7 @@ class MultiSocketProxy extends proxy_js_1.default {
}
socketClass;
_peers = new Map();
_nextPeer = (0, util_js_1.roundRobinFactory)(this._peers);
_nextPeer;
_server = false;
_allowedPorts = [];
constructor(options) {
@ -87,6 +87,7 @@ class MultiSocketProxy extends proxy_js_1.default {
if (options.server) {
this._server = true;
}
this._nextPeer = (0, util_js_1.roundRobinFactory)(this._peers);
}
_socketMap = new Map();
get socketMap() {