Skip to content

Instantly share code, notes, and snippets.

@luiscastro193
Created November 21, 2019 13:06
Show Gist options
  • Save luiscastro193/e41bc458ad97cdea5670670a416f409c to your computer and use it in GitHub Desktop.
Save luiscastro193/e41bc458ad97cdea5670670a416f409c to your computer and use it in GitHub Desktop.
Pause promise
"use strict";
function pause(ms) {
return new Promise(resolve => setTimeout(resolve, ms));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment