2.0.0 • Published 4 years ago

timeout-then v2.0.0

Weekly downloads
442
License
MIT
Repository
github
Last release
4 years ago

timeout-then

NPM version Build status Test coverage Dependency Status License Downloads

setTimeout as a promise.

const timeout = require('timeout-then');

timeout(100).then(function () {
  console.log('blah');
});

// clear timeout
let timer = timeout(100);
timer.then(function () {
  console.log('blah');
});
timer.clear();