Skip to content

Commit

Permalink
change ts
Browse files Browse the repository at this point in the history
  • Loading branch information
arvitaly committed Dec 4, 2018
1 parent b00e648 commit 46f2f06
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,6 @@
"**/*.js": {
"when": "$(basename).ts"
}
}
},
"typescript.tsdk": "node_modules\\typescript\\lib"
}
1 change: 0 additions & 1 deletion lib/match-names.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ function matchNames(name1, name2, options = {}) {
words1 = words1.filter((w) => w.toUpperCase() !== w);
words2 = words2.filter((w) => w.toUpperCase() !== w);
}
console.log("words1", words1, "words2", words2);
words1 = words1.map((w) => normalizeWord_1.normalizeWord(w)).filter((w) => !!w);
words2 = words2.map((w) => normalizeWord_1.normalizeWord(w)).filter((w) => !!w);
let equalWordsCount = 0;
Expand Down

0 comments on commit 46f2f06

Please sign in to comment.