- Updated all component headers and documentation
- Changed navbar and footer branding
- Updated homepage hero badge
- Modified page title in index.html
- Simplified footer text to 'Built with ❤️'
- Consistent V2 capitalization across all references
17 lines
362 B
JavaScript
17 lines
362 B
JavaScript
'use strict';
|
|
|
|
// TODO: switch to class private field when targetting node.js 12
|
|
const _summarizer = Symbol('ReportBase.#summarizer');
|
|
|
|
class ReportBase {
|
|
constructor(opts = {}) {
|
|
this[_summarizer] = opts.summarizer;
|
|
}
|
|
|
|
execute(context) {
|
|
context.getTree(this[_summarizer]).visit(this, context);
|
|
}
|
|
}
|
|
|
|
module.exports = ReportBase;
|