Skip to content

Instantly share code, notes, and snippets.

@lenivene
Last active August 22, 2020 07:07
Show Gist options
  • Save lenivene/2481c1a9ecb8d13a4180a0f02981b755 to your computer and use it in GitHub Desktop.
Save lenivene/2481c1a9ecb8d13a4180a0f02981b755 to your computer and use it in GitHub Desktop.
module.exports = async function sleep(time){
return new Promise(function (resolve) {
setTimeout(resolve, time);
})
}
export default async (time: number) => {
return new Promise(function (resolve) {
setTimeout(resolve, time);
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment