DEV Community

Discussion on: ๐Ÿš€ Dynamic Imports (Code Splitting) | ES2020

 
nialljoemaher profile image
Niall Maher

You could wrap the whole thing in a try catch if you wanted some error checking. This is just a super simplified sample.

Thread Thread
 
gorvgoyl profile image
Gourav

no this is not about error checking.. if we check beforehand that the module is already loaded then we need not load it again

Thread Thread
 
nialljoemaher profile image
Niall Maher

Nope, run the code with the network tab open and you'll see it's only fetched once no matter how many times you click the button.

Thread Thread
 
gorvgoyl profile image
Gourav

got it, if that's the case then it's okay.