use delay/sleep to async/await ES7
npm install await-delayuse delay/sleep to async/await ES7
``bash`
npm i --save await-delay
`js
import delay from 'await-delay'
async () => {
// Do something
// Wait for 2 seconds
await delay(2000)
// Do things after the delay
}
``