UNPKG

co-sleep

Version:

setTimeout that works with the co generator framework

8 lines (6 loc) 102 B
module.exports = sleep; function sleep(ms) { return function (cb) { setTimeout(cb, ms); }; }