Add files via upload

This commit is contained in:
Naiel
2025-05-27 12:29:51 +02:00
committed by GitHub
parent 17c3bb04fc
commit 1a6cd5591e
50 changed files with 7987 additions and 0 deletions

7
static/load.js Normal file
View File

@@ -0,0 +1,7 @@
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);
}