pwait
v1.0.1
Published
Promise based setTimeout with nothing to do
Readme
Install
npm i --save pwait
Usage
async/await:
const wait = require('pwait');
async function doSomething() {
//...
await wait(1000); //wait 1000ms and do nothing
//...
}Promise:
const wait = require('pwait');
wait(1000).then(()=>{
console.log('after 1s');
}).then(()=>wait(1000)).then(()=>{
console.log('another 1s');
});