Replaced isEqual for better performance

This commit is contained in:
Konstantin Mamalakis 2018-03-06 23:28:08 +02:00 committed by Josh Harvey
parent 051dac127b
commit f8ec2be6e8
2 changed files with 4 additions and 5 deletions

View file

@ -66,10 +66,10 @@ function match (nameParts, birthDateString, threshold) {
const birthDate = {year, month, day, date}
const candidate = {parts, fullName, wordValues, wordPhonetics, birthDate}
debug_log(candidate)
// debug_log(candidate)
const result = matcher.match(structs, candidate, threshold)
debug_log(result)
// debug_log(result)
return result
}