module.exports = class Node { constructor(opts = false) { if (opts) { Object.keys(opts).forEach(opt => { this[opt] = opts[opt] }) } } }