Add JSON5 deserialization

This commit is contained in:
Zykino
2022-09-20 23:03:15 +02:00
parent d7e5bcea1b
commit 2e75ffea68
5 changed files with 198 additions and 0 deletions

View File

@ -0,0 +1,12 @@
{
// comments
unquoted: 'and you can quote me on that',
singleQuotes: 'I can use "double quotes" here',
lineBreaks: "Look, Mom! \
No \\n's!",
hexadecimal: 0xdecaf,
leadingDecimalPoint: .8675309, andTrailing: 8675309.,
positiveSign: +1,
trailingComma: 'in objects', andIn: ['arrays',],
"backwardsCompatible": "with JSON",
}