blob: 317047ccb5deb14bdf6b2072004964da5698d429 (
plain)
1
2
3
4
5
6
7
|
import("./dynamic_import/b.js").catch(() => {
console.log("caught import error from b.js");
});
import("./dynamic_import/c.js").catch(() => {
console.log("caught import error from c.js");
});
|