$ cnpm install timeout-then
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();
Copyright 2013 - present © cnpmjs.org | Home |