mirror of
https://github.com/amark/gun.git
synced 2025-03-30 15:08:33 +00:00
9 lines
302 B
JavaScript
9 lines
302 B
JavaScript
|
|
var u, Gun = (''+u != typeof window)? (window.Gun||{chain:{}}) : require((''+u === typeof MODULE?'.':'')+'./gun', 1);
|
|
Gun.chain.then = function(cb, opt){
|
|
var gun = this, p = (new Promise(function(res, rej){
|
|
gun.once(res, opt);
|
|
}));
|
|
return cb? p.then(cb) : p;
|
|
}
|
|
|