Skip to content

Instantly share code, notes, and snippets.

@nsacerdote
Created October 2, 2020 12:43
Show Gist options
  • Save nsacerdote/5047ec0e65da0134db79e55b1160994f to your computer and use it in GitHub Desktop.
Save nsacerdote/5047ec0e65da0134db79e55b1160994f to your computer and use it in GitHub Desktop.
function doSomething(input) {
return new Promise((resolve, reject) => {
if (!input) {
reject('missing input');
} else {
resolve(input + ' done');
}
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment