async-module.mjs 181 B

1234567891011
  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";