async-module.mjs 267 B

1234567891011121314151617
  1. await Promise.resolve(0);
  2. export const foo = "Well hello async shadows";
  3. await 1;
  4. export default "Default export";
  5. await Promise.resolve(2);
  6. export const bar = "'bar' export";
  7. async function baz() {
  8. return "'qux' export";
  9. }
  10. export const qux = await baz();