Const
Any object that implements this Symbol as a property should return a PeerRouting instance as the property value, similar to how Symbol.Iterable can be used to return an Iterable from an Iterator.
Symbol.Iterable
Iterable
Iterator
import { peerRouting, PeerRouting } from '@libp2p/peer-routing'class MyPeerRouter implements PeerRouting { get [peerRouting] () { return this } // ...other methods}
Any object that implements this Symbol as a property should return a PeerRouting instance as the property value, similar to how
Symbol.Iterable
can be used to return anIterable
from anIterator
.Example