Skip to content

Instantly share code, notes, and snippets.

@LipinArts
Created July 5, 2018 08:24
Show Gist options
  • Save LipinArts/9cced45311efc994a095c780cf961e2c to your computer and use it in GitHub Desktop.
Save LipinArts/9cced45311efc994a095c780cf961e2c to your computer and use it in GitHub Desktop.
async pause
const pause = async (time) => {
return new Promise((resolve) => {
setTimeout(resolve, time);
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment