mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-13 05:41:51 +00:00
4 lines
329 B
JavaScript
4 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" };
|