Skip to content

Instantly share code, notes, and snippets.

@bobsilverberg
Forked from rpl/promise-example.js
Created November 21, 2016 18:59
Show Gist options
  • Save bobsilverberg/f36c0424d7ac1140b6afc9133d84d32e to your computer and use it in GitHub Desktop.
Save bobsilverberg/f36c0424d7ac1140b6afc9133d84d32e to your computer and use it in GitHub Desktop.
small promise example
function () {
if (...) {
return Promise.resolve();
}
const isDonePromise = doSomethingAsync().then(() => {
});
...
return isDonePromise;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment