blob: 7eb6e0c4a991515ce77b3298805168227bbd3c2c (
plain)
1
2
3
4
5
6
7
8
9
10
|
var Article = require('./article');
function Summary() {
if (!(this instanceof Summary)) return new Summary();
}
Summary.prototype.type = 'summary';
module.exports = Summary;
|