nlptoolkit-morphologicalanalysis
Advanced tools
Comparing version 1.0.6 to 1.0.7
@@ -95,2 +95,5 @@ (function (factory) { | ||
let bestParse = undefined; | ||
if (this.fsmParses.length > 0) { | ||
bestParse = this.fsmParses[0]; | ||
} | ||
for (let currentParse of this.fsmParses) { | ||
@@ -97,0 +100,0 @@ if (currentParse.getWord().getName().length > maxLength && !this.isLongestRootException(currentParse)) { |
{ | ||
"name": "nlptoolkit-morphologicalanalysis", | ||
"version": "1.0.6", | ||
"version": "1.0.7", | ||
"description": "Turkish Morphological Analysis Library", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -173,2 +173,5 @@ import {FsmParse} from "./FsmParse"; | ||
let bestParse = undefined; | ||
if (this.fsmParses.length > 0){ | ||
bestParse = this.fsmParses[0] | ||
} | ||
for (let currentParse of this.fsmParses) { | ||
@@ -175,0 +178,0 @@ if (currentParse.getWord().getName().length > maxLength && !this.isLongestRootException(currentParse)) { |
Sorry, the diff of this file is not supported yet
12958546
14017