gun/lib/load.js
2017-11-29 01:46:30 -08:00

7 lines
182 B
JavaScript

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