diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-03-11 20:33:01 -0400 |
---|---|---|
committer | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2020-03-15 22:24:30 -0400 |
commit | 0f15cca2dff995218a52ff7066008da4cd414e3f (patch) | |
tree | 8b2e0644cdc9e2748d029c1df96a07d3b5af6990 /ext/bg/js/audio-uri-builder.js | |
parent | 7c5b64f9a43e9d2ca0c6d38cb5089be04c4c00df (diff) |
Convert Japanese utilities to a module-like style
Diffstat (limited to 'ext/bg/js/audio-uri-builder.js')
-rw-r--r-- | ext/bg/js/audio-uri-builder.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/bg/js/audio-uri-builder.js b/ext/bg/js/audio-uri-builder.js index 499c3441..158006bb 100644 --- a/ext/bg/js/audio-uri-builder.js +++ b/ext/bg/js/audio-uri-builder.js @@ -17,7 +17,7 @@ */ /* global - * jpIsStringEntirelyKana + * jp */ class AudioUriBuilder { @@ -66,7 +66,7 @@ class AudioUriBuilder { let kana = definition.reading; let kanji = definition.expression; - if (!kana && jpIsStringEntirelyKana(kanji)) { + if (!kana && jp.isStringEntirelyKana(kanji)) { kana = kanji; kanji = null; } |