UNPKG

jpex-defaults

Version:
10 lines (9 loc) 203 B
module.exports = function () { function timeout(cb, delay){ return setTimeout(cb, delay); } timeout.clear = function(t){ return clearTimeout(t); }; return timeout; };