Node currently enables class construction in Strict mode.
If I have the following class:
"use strict"
class MyClass {
constructor(foo) {
this.foo = foo
}
func(){/*ETC */}
}
What is the corresponding export statement for it to be exportable to another module. What about the import statement from another file?