Due to a base Latite bug, all Unicode characters have their leading byte removed - that is, \uE099 becomes \u0099. (Specifically, the util.stringToBuffer() function deletes this leading byte for each character converted.)
The best solution for everyone is for Latite to fix the bug. While I probably could use an external filesystem library, I'm not sure of the stability of doing such a thing.
Due to a base Latite bug, all Unicode characters have their leading byte removed - that is,
\uE099becomes\u0099. (Specifically, theutil.stringToBuffer()function deletes this leading byte for each character converted.)The best solution for everyone is for Latite to fix the bug. While I probably could use an external filesystem library, I'm not sure of the stability of doing such a thing.