Processing the following JSON fails: ``` [ { "value": "abc\\" } ] ``` If the escaped backslash is followd by another character, it nevertheless works: ``` [ { "value": "abc\\d" } ] ```