Skip to content

Instantly share code, notes, and snippets.

@strrife
Created November 26, 2015 10:31
Show Gist options
  • Save strrife/6a6f19923cfdf2af7815 to your computer and use it in GitHub Desktop.
Save strrife/6a6f19923cfdf2af7815 to your computer and use it in GitHub Desktop.
function delay(time) {
return new Promise(function (fulfill) {
setTimeout(fulfill, time);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment