'use strict'; class Container { constructor(node) { this.node = node; } toJSON() { return this.items; } } module.exports = Container;