javascript - Is there a JS Module loader that loads into global namespace? -


i achieve - js file 1:

class polygon { ... } 

js file 2:

import 'polygon.js'  class square extends polygon { ... } 

is there module loading framework allow me (without having encapsulate imports 'polygon.js' inside variable)


Comments

Popular posts from this blog

java - Static nested class instance -

c# - Bluetooth LE CanUpdate Characteristic property -

JavaScript - Replace variable from string in all occurrences -