Skip to content

Instantly share code, notes, and snippets.

@stowball
Created July 12, 2021 01:02
Show Gist options
  • Save stowball/472b4b2019829ca3d6fd02114e7bfc66 to your computer and use it in GitHub Desktop.
Save stowball/472b4b2019829ca3d6fd02114e7bfc66 to your computer and use it in GitHub Desktop.
Dummy async function to resolve after 2 seconds
function resolveAfter2Seconds(data) {
return new Promise(resolve => {
setTimeout(() => {
resolve(`resolved, ${data}`);
}, 2000);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment