Oct 10, 2020 10:34 AM
Oct 10, 2020 10:39 AM
If you’re being literal: console.log(table) or output.inspect(table)
console.log(table)
output.inspect(table)
If you want to use an object like a table model in output.text() you have to pass an attribute, not the whole table (i.e. table.name)
output.text()
table.name
Oct 10, 2020 12:00 PM
Um, have you tried output.inspect()?
output.inspect()
output.inspect(table);