@@ -513,9 +513,11 @@ const Search = {
513
513
// perform the search on the required terms
514
514
searchTerms . forEach ( ( word ) => {
515
515
const files = [ ] ;
516
+ // find documents, if any, containing the query word in their text/title term indices
517
+ // use Object.hasOwnProperty to avoid mismatching against prototype properties
516
518
const arr = [
517
- { files : terms [ word ] , score : Scorer . term } ,
518
- { files : titleTerms [ word ] , score : Scorer . title } ,
519
+ { files : terms . hasOwnProperty ( word ) ? terms [ word ] : undefined , score : Scorer . term } ,
520
+ { files : titleTerms . hasOwnProperty ( word ) ? titleTerms [ word ] : undefined , score : Scorer . title } ,
519
521
] ;
520
522
// add support for partial matches
521
523
if ( word . length > 2 ) {
@@ -547,8 +549,9 @@ const Search = {
547
549
548
550
// set score for the word in each file
549
551
recordFiles . forEach ( ( file ) => {
550
- if ( ! scoreMap . has ( file ) ) scoreMap . set ( file , { } ) ;
551
- scoreMap . get ( file ) [ word ] = record . score ;
552
+ if ( ! scoreMap . has ( file ) ) scoreMap . set ( file , new Map ( ) ) ;
553
+ const fileScores = scoreMap . get ( file ) ;
554
+ fileScores . set ( word , record . score ) ;
552
555
} ) ;
553
556
} ) ;
554
557
@@ -587,7 +590,7 @@ const Search = {
587
590
break ;
588
591
589
592
// select one (max) score for the file.
590
- const score = Math . max ( ...wordList . map ( ( w ) => scoreMap . get ( file ) [ w ] ) ) ;
593
+ const score = Math . max ( ...wordList . map ( ( w ) => scoreMap . get ( file ) . get ( w ) ) ) ;
591
594
// add result to the result list
592
595
results . push ( [
593
596
docNames [ file ] ,
0 commit comments