aboutsummaryrefslogtreecommitdiff
path: root/ext/mixed/js
diff options
context:
space:
mode:
authortoasted-nutbread <toasted-nutbread@users.noreply.github.com>2020-03-09 21:34:31 -0400
committertoasted-nutbread <toasted-nutbread@users.noreply.github.com>2020-03-09 21:58:06 -0400
commit72219ba3530f9da02d3ec1d704baac6f88863682 (patch)
tree08d93d4251ca19e3ef816d7d7310c41b5ae7ae0c /ext/mixed/js
parent0cd1f8f20a1b632847e14b280849e4af1b6dd9ad (diff)
Replace charCodeAt and fromCharCode with codePointAt and fromCodePoint
Diffstat (limited to 'ext/mixed/js')
-rw-r--r--ext/mixed/js/display-generator.js2
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