1 2 3 4 5 6 7 8 9
function Summary() { if (!(this instanceof Summary)) return new Summary(); } Summary.prototype.type = 'summary'; module.exports = Summary;