diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-03-09 21:34:31 -0400 |
---|---|---|
committer | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-03-09 21:58:06 -0400 |
commit | 72219ba3530f9da02d3ec1d704baac6f88863682 (patch) | |
tree | 08d93d4251ca19e3ef816d7d7310c41b5ae7ae0c /ext/mixed | |
parent | 0cd1f8f20a1b632847e14b280849e4af1b6dd9ad (diff) |
Replace charCodeAt and fromCharCode with codePointAt and fromCodePoint
Diffstat (limited to 'ext/mixed')
-rw-r--r-- | ext/mixed/js/display-generator.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/mixed/js/display-generator.js b/ext/mixed/js/display-generator.js index d7e77cc0..470e2a15 100644 --- a/ext/mixed/js/display-generator.js +++ b/ext/mixed/js/display-generator.js @@ -298,7 +298,7 @@ class DisplayGenerator { } static _isCharacterKanji(c) { - const code = c.charCodeAt(0); + const code = c.codePointAt(0); return ( code >= 0x4e00 && code < 0x9fb0 || code >= 0x3400 && code < 0x4dc0 |