UNPKG

webrtc-explorer

Version:

P2P Network Routing Overlay designed for the Web platform (browsers)

8 lines (6 loc) 208 B
const Id = require('webrtc-explorer-peer-id') module.exports = (peerId, row) => { const k = Number(row) + 1 const ideal = (peerId.toDec() + Math.pow(2, k - 1)) % Math.pow(2, 48) return new Id(ideal) }