1234567891011121314151617 |
- await Promise.resolve(0);
- export const foo = "Well hello async shadows";
- await 1;
- export default "Default export";
- await Promise.resolve(2);
- export const bar = "'bar' export";
- async function baz() {
- return "'qux' export";
- }
- export const qux = await baz();
|