mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-08 06:09:58 +00:00
8 lines
178 B
JavaScript
8 lines
178 B
JavaScript
|
|
(async function () {
|
||
|
|
const first = import("./cyclic-async-module-a.mjs");
|
||
|
|
const second = import("./cyclic-async-module-b.mjs");
|
||
|
|
|
||
|
|
await first;
|
||
|
|
await second;
|
||
|
|
})();
|