mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-11-10 02:01:03 +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";
|