Skip to content

Instantly share code, notes, and snippets.

@abegehr
Last active May 13, 2020 10:29
Show Gist options
  • Save abegehr/9803f4908186ad878167400a6fb7be8d to your computer and use it in GitHub Desktop.
Save abegehr/9803f4908186ad878167400a6fb7be8d to your computer and use it in GitHub Desktop.
sleepjs async sleep and alert
// https://github.com/simsieg/sleepjs
const { sleep } = require('sleepjs')
async function myFunction() => {
await sleep(500);
alert("Hello");
}
myFunction();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment