mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-29 12:24:18 +00:00
5 lines
329 B
JavaScript
5 lines
329 B
JavaScript
|
|
import * as self from "./import-with-attributes.mjs" with { key: "value", key2: "value2", default: "shouldwork" };
|
||
|
|
import "./import-with-attributes.mjs" with { key: "value", key2: "value2", default: "shouldwork" };
|
||
|
|
|
||
|
|
export { passed } from "./module-with-default.mjs" with { key: "value", key2: "value2", default: "shouldwork" };
|