mirror of
https://github.com/zebrajr/ladybird.git
synced 2025-12-06 12:20:00 +01:00
This was removed from the spec some time ago. See: https://github.com/tc39/proposal-import-attributes/commit/14286bb
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" };
|