This commit is contained in:
Simon Schick 2016-12-09 01:51:13 +01:00
Родитель d2cee522f9
Коммит a9c88c1dc9
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -80,9 +80,9 @@ export default function damlev (source: string, target: string) {
// Run the damlev algorithm
let chars: { [key: string]: number } = {};
let j: number, DB: number, i1: number, j1: number, j2: number, newScore: number;
for (i = 1; i <= sourceLength; i++) {
for (i = 1; i <= sourceLength; i += 1) {
DB = 0;
for (j = 1; j <= targetLength; j++) {
for (j = 1; j <= targetLength; j += 1) {
i1 = chars[targetCodes[j - 1]] || 0;
j1 = DB;