Skip to content

Instantly share code, notes, and snippets.

@sosmii
Last active August 8, 2019 09:19
Show Gist options
  • Save sosmii/8f6a27f1ed6bb1460620e7cfdc03b463 to your computer and use it in GitHub Desktop.
Save sosmii/8f6a27f1ed6bb1460620e7cfdc03b463 to your computer and use it in GitHub Desktop.
a small util that let you sleep with async/await
module.exports = async milliSecond => {
return new Promise(resolve => setTimeout(resolve, milliSecond));
}
export default async (milliSecond: number) => {
return new Promise(resolve => setTimeout(resolve, milliSecond));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment