Added build script

This commit is contained in:
naielv
2025-06-27 20:23:33 +02:00
parent 6c29ee0276
commit 5efd9078f7
91 changed files with 3071 additions and 3126 deletions

7
dist/static/load.js vendored 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);
}