forked from snxraven/LinkUp-P2P-Chat
I tried to iterate over not iterable object again 😭
This commit is contained in:
parent
d1ee697c84
commit
aa53cb487b
@ -23,7 +23,7 @@ class Client extends EventEmitter {
|
|||||||
console.log(`Peers count: ${this.swarm.connections.size}`);
|
console.log(`Peers count: ${this.swarm.connections.size}`);
|
||||||
if(this.swarm.connections.size > 0) {
|
if(this.swarm.connections.size > 0) {
|
||||||
let arr = [];
|
let arr = [];
|
||||||
[...this.swarm.peers].forEach(peer => arr.push([...peer.topics]));
|
[...this.swarm.peers].forEach(peer => arr.push([peer.topics]));
|
||||||
console.log(arr);
|
console.log(arr);
|
||||||
process.exit(-1);
|
process.exit(-1);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user