mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 01:35:08 +02: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" };
|