Created
February 1, 2017 05:22
-
-
Save jeffmo/7102fb110428ff204db20a9406ae97dd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export default (async function() => { | |
return 42; | |
})(); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import interestingM from "interesting.js"; | |
export default (async function() => { | |
let interesting = await interestingM; | |
console.log('psuedo-toplevel await complete!'); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment