I want to export a class with static methods in a module, along with other functions. I'm trying to do
module.exports = { fun: function(){}, class: myClassMyClass } class MyClass { static get prop() { return 'property'; } } But it does not work. Is there a way to export class as part of module.exports object?