mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-08 01:27:31 +00:00
12 lines
181 B
JavaScript
12 lines
181 B
JavaScript
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";
|