|
|
|
|
|
by brundolf
1687 days ago
|
|
> Yes, dynamic imports exist but they are sort of an exotic feature that you would only use in special situations. They're also decidedly inconvenient to use in most situations, because they return a Promise (unlike require()), which means anything that depends on them has to itself be deferred. This further discourages using them unless you really need to. |
|