Closed phadej closed 11 years ago
Oups, I was too fast. Can you fix this error in the test:
Linting test/normalization.js ...ERROR
[L25:C15] W117: 'UNorm' is not defined.
s += UNorm.UChar.fromCharCode(eval("0x" + match[0])).toString();
I think you need to export UChar in order to do that. Otherwise you can just inline that function. And instead of eval
, can you just parseInt(match[0], 16)
?
Seems good!