js-libp2p/src/index.js

20 lines
354 B
JavaScript
Raw Normal View History

2016-03-23 15:30:14 +01:00
'use strict'
exports = module.exports = Libp2p
function Libp2p (swarm, peerRouting, recordStore) {
var self = this
if (!(self instanceof Libp2p)) {
throw new Error('Must be called with new')
}
if (!swarm) {
throw new Error('a swarm must be passed')
}
self.swarm = swarm
self.routing = peerRouting
self.record = recordStore
}