react-carousel-query
Version:
A infinite carousel component made with react that handles the pagination for you.
17 lines (12 loc) • 362 B
JavaScript
// 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;
;