Skip to content

Instantly share code, notes, and snippets.

@tbranyen
Created February 20, 2019 01:06
Show Gist options
  • Save tbranyen/c74f7ca6678d1739eeccbdd61210c322 to your computer and use it in GitHub Desktop.
Save tbranyen/c74f7ca6678d1739eeccbdd61210c322 to your computer and use it in GitHub Desktop.
function makePromise() {
return new Promise(() => {});
}
async function main() {
console.log('start');
await makePromise();
console.log('end');
}
main();
@padmaia
Copy link

padmaia commented Feb 21, 2019

Oh my god, I'm pretty sure I ran into this for the first time a couple weeks ago! Thought I was going crazy, but like always my assumptions were just wrong. Thanks for giving me my sanity back.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment