Files
tasq/node_modules/gun/lib/later.js
T
2026-04-09 19:01:53 +08:00

11 lines
252 B
JavaScript

var Gun = Gun || require('../gun');
Gun.chain.open || require('./open');
Gun.chain.later = function(cb, age){
var gun = this;
age = age * 1000; // convert to milliseconds.
setTimeout(function(){
gun.open(cb, {off: true});
}, age);
return gun;
}