When converting the "\" character using two methods (codePointAt(0)
or charCodeAt(0)), 0 is returned.
The rest of the characters are converted without problems.
Is it possible to fix this bug Ashley ?
Develop games in your browser. Powerful, performant & highly capable.
Construct text don’t use escaped values but JavaScript does. So to use \ in js you’d need \\ with replace(var,"\", "\\") or something.