JSON5 allows certain unicode code points for identifiers. The current code only checks for isAlphaNum which is not the same set of unicode code points.
We need our own trie-based isJSON5IdentiferChar that will do this. This might be a complex setup, but will not have to change once set up.
See #8 (comment)
JSON5 allows certain unicode code points for identifiers. The current code only checks for
isAlphaNumwhich is not the same set of unicode code points.We need our own trie-based
isJSON5IdentiferCharthat will do this. This might be a complex setup, but will not have to change once set up.See #8 (comment)