9
नोड 4 में ईएस 6 वर्ग को ठीक से कैसे निर्यात करें?
मैंने एक मॉड्यूल में एक वर्ग को परिभाषित किया: "use strict"; var AspectTypeModule = function() {}; module.exports = AspectTypeModule; var AspectType = class AspectType { // ... }; module.export.AspectType = AspectType; लेकिन मुझे निम्नलिखित त्रुटि संदेश मिलता है: TypeError: Cannot set property 'AspectType' of undefined at Object.<anonymous> (...\AspectType.js:30:26) at Module._compile …