Skip to content

Instantly share code, notes, and snippets.

@ajcrites
Created June 16, 2015 15:12
Show Gist options
  • Save ajcrites/2e2ac2b3c6be5e8fdd4c to your computer and use it in GitHub Desktop.
Save ajcrites/2e2ac2b3c6be5e8fdd4c to your computer and use it in GitHub Desktop.
require("babel/polyfill");
async () => {
let value = await (
() => new Promise(resolve => setTimeout(
() => resolve("value"), 2000
))
)();
console.log(value);
}();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment