Nov. 19, 2016
4:46 p.m.
\â is not a valid JSON escape character, so STONâs JSON ouput is not a valid JSON string. ston := STON toJsonString: 'element''s'. -> "element\'s" neo := NeoJSONWriter toString: 'element''s'. -> "element's" NeoJSONReader fromString: ston. -> invalid escape character \â Peter