sleep.js 203 B

123456789
  1. var _ = require("./_");
  2. module.exports = function (time, val) {
  3. return new _.Promise(function (r) {
  4. return setTimeout((function () {
  5. return r(val);
  6. }), time);
  7. });
  8. };