Files
TeleSec/assets/static/load.js
2025-07-30 21:30:24 +02:00

7 lines
215 B
JavaScript

var Gun = (typeof window !== "undefined")? window.Gun : require('../gun');
Gun.chain.open || require('./open');
Gun.chain.load = function(cb, opt, at){
(opt = opt || {}).off = !0;
return this.open(cb, opt, at);
}