For the following inputs, the `stringify` method gives the wrong TOML outputs: ```js { foo: { a: 'b' }, bar: 'baz' } ``` gives the following TOML: ```toml "baz"bar= [foo] a = "b" ``` and this: ```js { foo: {}, bar: 'baz' } ``` gives: ```toml "baz"= [foo] ```