Shleep is tiny,coming in at 183 bytes
yarn install shleep
npm install -S shleep
import sleep from 'shleep'
// Standard promise
sleep(1000).then(/* Do stuff */)
// async await
async function yourAsyncFunction() {
await sleep(1000)
/* do stuff here */
}