aboutsummaryrefslogtreecommitdiff
path: root/ext/bg/js/deinflector.js
diff options
context:
space:
mode:
authortoasted-nutbread <toasted-nutbread@users.noreply.github.com>2019-11-24 11:02:52 -0500
committertoasted-nutbread <toasted-nutbread@users.noreply.github.com>2019-11-24 11:02:52 -0500
commitcf18e3b42e0fa171b9ec9af4c534a962d347e155 (patch)
treec0411fabbaf9a4f7a2d14b3de926d81d08be2553 /ext/bg/js/deinflector.js
parenteef05f6a64678ed30ac26720adfc44760a79e380 (diff)
Replace string.substr and string.slice with string.substring
Improves semantic clarity, and it's recommended to not use substr.
Diffstat (limited to 'ext/bg/js/deinflector.js')
-rw-r--r--ext/bg/js/deinflector.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/bg/js/deinflector.js b/ext/bg/js/deinflector.js
index ce4b2961..e2fb7461 100644
--- a/ext/bg/js/deinflector.js
+++ b/ext/bg/js/deinflector.js
@@ -44,7 +44,7 @@ class Deinflector {
results.push({
source,
- term: term.slice(0, -kanaIn.length) + kanaOut,
+ term: term.substring(0, term.length - kanaIn.length) + kanaOut,
rules: rulesOut,
definitions: [],
reasons: [reason, ...reasons]