summaryrefslogtreecommitdiffstats
path: root/lib/backbone/summary.js
blob: e2cd485704e615a31f60eddeb88d12570da9e7b8 (plain)
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;