summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/tools/wtstats/template/models/stat-collection.js
blob: 6e6b82a1e9f509f7e1589c9dd9f31d194cdb3668 (plain)
1
2
3
4
5
6
7
8
var AmpersandCollection = require('ampersand-collection'),
    UnderscoreMixin = require('ampersand-collection-underscore-mixin'),
    Stat = require('./stat');

var StatCollection = module.exports = AmpersandCollection.extend(UnderscoreMixin, {
  comparator: 'name',
  model: Stat
});