Is Deno's implementation of dynamic import() ECMA-262 and test262 conformant? #629
-
Consider this code from here Deno dynamic import("./exports") throws module not found for "exports.js" dynamically created in the script. Note: A workaround for this is to use Very simple question: Is Deno's implementation of dynamic
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 7 replies
-
Yes. ECMA-262 doesn't demand anything from implementers. I can't link directly to the right clauses for some reason1 but it's
It's arguably a quality-of-implementation issue but not a spec conformance issue. 1 the closest I can link to is https://tc39.es/ecma262/#sec-ecmascript-language-scripts-and-modules |
Beta Was this translation helpful? Give feedback.
That's right.