diff options
author | Alex Yatskov <alex@foosoft.net> | 2016-09-10 19:44:54 -0700 |
---|---|---|
committer | Alex Yatskov <alex@foosoft.net> | 2016-09-10 19:44:54 -0700 |
commit | 058739988302513c8496e569cf3a4fd1eb5920b4 (patch) | |
tree | a8b1a019e818b26093d333a3f1f5c8d010ade4a5 /ext/bg | |
parent | 47ef617eb4d951233d43c8da6e13a8bd2e40a863 (diff) |
WIP
Diffstat (limited to 'ext/bg')
-rw-r--r-- | ext/bg/js/deinflector.js | 2 | ||||
-rw-r--r-- | ext/bg/js/translator.js | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ext/bg/js/deinflector.js b/ext/bg/js/deinflector.js index 2d567e6b..4cdc9a3d 100644 --- a/ext/bg/js/deinflector.js +++ b/ext/bg/js/deinflector.js @@ -116,7 +116,7 @@ class Deinflector { deinflect(term, validator) { const node = new Deinflection(term); return node.deinflect(validator, this.rules).then(success => { - return success ? node.gather() : null; + return success ? node.gather() : []; }); } } diff --git a/ext/bg/js/translator.js b/ext/bg/js/translator.js index dcc2e5ac..ccf1876f 100644 --- a/ext/bg/js/translator.js +++ b/ext/bg/js/translator.js @@ -63,7 +63,7 @@ class Translator { this.deinflector.deinflect(text.slice(0, i), term => { return this.dictionary.findTerm(term).then(definitions => definitions.map(def => def.tags)); }).then(inflects => { - for (const inflect of inflects || []) { + for (const inflect of inflects) { this.processTerm(groups, df.source, df.tags, df.rules, df.root); } }) |