Open jesseditson opened 2 months ago
In case it's helpful - until this lib is TOML 1.0 compatible, I'm using https://www.npmjs.com/package/toml (https://github.com/BinaryMuse/toml-node) (which also appears to be a few versions behind the toml spec) for parsing, and https://www.npmjs.com/package/json2toml (https://github.com/KenanY/json2toml) for dumping.
Just for bookkeeping, here are some incompatibilities I ran across when looking at using this with toml 1.0:
foo="bar baz"
is parsed asfoo: "barbaz"
)