mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-05-18 17:18:17 +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";
|