mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-08 06:09:58 +00:00
11 lines
181 B
JavaScript
11 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";
|