How can I determine if a tree row in Tabulator is expanded or collapsed? I'm using version 4.9, the current. The best I could come up was digging into the implementation details:
row._row.modules.dataTree.open
But I'd prefer something using only the documented API. The best I could come up with was:
row.getNextRow().getTreeParent() === row
// (With special handling when getNextRow() is false)