gun/lib/load.js
2017-09-22 15:45:26 -07:00

7 lines
181 B
JavaScript

var Gun = Gun || require('../gun');
Gun.chain.open || require('gun/lib/open');
Gun.chain.load = function(cb, opt, at){
(opt = opt || {}).off = !1;
return gun.open(cb, opt, at);
}