I'm finding that when I convert a Lua table to JS, I can't examine its `keys`. Is there a way of doing this? ```lua { foo = 1, bar = 2} ``` In Javascript, I would like to type: ```javascript # ... convert above Lua to js using tojs() as object o Object.keys(o) ```