On 3/7/19 6:14 PM, [email protected] wrote:
Is there any way to feature detect support for import() syntax?
In Firefox, yes, as far as I can tell:
try {
new Function("import('')");
// supported
} catch (e) {
// not supported
}
-Boris
_______________________________________________
dev-platform mailing list
[email protected]
https://lists.mozilla.org/listinfo/dev-platform

