Skip to content

Instantly share code, notes, and snippets.

@hkwon
Last active July 29, 2019 02:09
Show Gist options
  • Save hkwon/ec4884f534a08bd20c8f37cd3ad974ab to your computer and use it in GitHub Desktop.
Save hkwon/ec4884f534a08bd20c8f37cd3ad974ab to your computer and use it in GitHub Desktop.
sleep() function in javascript
const util = {
sleep(ms) { // ms: milliseconds
return new Promise(resolve => setTimeout(resolve, ms));
}
};
module.exports = util;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment