as per https://tools.ietf.org/html/rfc7159#section-4 > The names within an object SHOULD be unique. yet JSX works like this: ``` 1> jsx:decode(<<"{\"a\": \"b\", \"a\": \"c\"}">>). [{<<"a">>,<<"b">>},{<<"a">>,<<"c">>}] ``` Consider adding `no_duplicate_keys` as as flag part of the *strict* option, or similar.
as per https://tools.ietf.org/html/rfc7159#section-4
yet JSX works like this:
Consider adding
no_duplicate_keysas as flag part of the strict option, or similar.