Json fast - tooltwist/xdata GitHub Wiki
Unexpected behaviour
Fast JSON will parse some strings that would not strictly valid JSON.
Duplicated field names
Duplicated properties are treated as if they were all in a single array.
{
"a" : [ 1, 2, 3 ],
"a" : 4,
"a" : [ 5, 6, 7 ]
}
select("a")
-> [ 1, 2, 3, 4, 5, 6, 7 ]
--