summaryrefslogtreecommitdiff
path: root/ext/bg/js/api.js
diff options
context:
space:
mode:
Diffstat (limited to 'ext/bg/js/api.js')
-rw-r--r--ext/bg/js/api.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/bg/js/api.js b/ext/bg/js/api.js
index 967bded7..40e9b6d2 100644
--- a/ext/bg/js/api.js
+++ b/ext/bg/js/api.js
@@ -86,9 +86,9 @@ async function apiTextParse(text, optionsContext) {
const results = [];
while (text) {
const term = [];
- let [definitions, sourceLength] = await translator.findTerms(text, {}, options);
+ const [definitions, sourceLength] = await translator.findTerms(text, {}, options);
if (definitions.length > 0) {
- definitions = dictTermsSort(definitions);
+ dictTermsSort(definitions);
const {expression, reading} = definitions[0];
const source = text.slice(0, sourceLength);
for (const {text, furigana} of jpDistributeFuriganaInflected(expression, reading, source)) {