@@ -30,13 +30,10 @@ var abs = require( '@stdlib/math/base/special/abs' );
30
30
/**
31
31
* Checks if the completion is a fuzzy match for the input.
32
32
*
33
- * A fuzzy match is determined by the number and order of matching characters, penalizing large distances between matches.
34
- * A score above or equal to 0.8 indicates a match.
35
- *
36
33
* @private
37
- * @param {string } completion - The completion string.
38
- * @param {string } input - The input string.
39
- * @returns {boolean } - True if the completion is a fuzzy match for the input, false otherwise.
34
+ * @param {string } completion - completion string
35
+ * @param {string } input - input string
36
+ * @returns {boolean } - boolean indicating if a completion is a fuzzy match for the input string
40
37
*/
41
38
function fuzzyMatch ( completion , input ) {
42
39
var charPositions ;
@@ -49,44 +46,54 @@ function fuzzyMatch( completion, input ) {
49
46
var i ;
50
47
var j ;
51
48
49
+ // Return true for perfect prefix
52
50
if ( startsWith ( completion , input ) ) {
53
- return true ; // Return true for perfect matches
51
+ return true ;
54
52
}
55
53
56
- // Preprocess the completion string to get the positions of each character
57
- positions = { } ;
58
- for ( i = 0 ; i < completion . length ; i ++ ) {
59
- char = completion [ i ] ;
60
- if ( ! positions [ char ] ) {
61
- positions [ char ] = [ ] ;
54
+ if ( completion . length >= input . length ) {
55
+ // Preprocess the completion string to get the positions of each character
56
+ positions = { } ;
57
+ for ( i = 0 ; i < completion . length ; i ++ ) {
58
+ char = completion [ i ] ;
59
+ if ( ! positions [ char ] ) {
60
+ positions [ char ] = [ ] ;
61
+ }
62
+ positions [ char ] . push ( i ) ;
62
63
}
63
- positions [ char ] . push ( i ) ;
64
- }
65
64
66
- score = 0 ;
67
- index = 0 ;
68
- for ( i = 0 ; i < input . length ; i ++ ) {
69
- charPositions = positions [ input [ i ] ] ;
70
- if ( ! charPositions ) {
71
- continue ;
65
+ score = 0 ;
66
+ index = 0 ;
67
+ for ( i = 0 ; i < input . length ; i ++ ) {
68
+ charPositions = positions [ input [ i ] ] ;
69
+ if ( ! charPositions ) {
70
+ continue ;
71
+ }
72
+
73
+ // Find the next position of the character that is greater than or equal to index
74
+ j = 0 ;
75
+ while ( j < charPositions . length && charPositions [ j ] < index ) {
76
+ j += 1 ;
77
+ }
78
+ if ( j === charPositions . length ) {
79
+ continue ;
80
+ }
81
+
82
+ // Subtract a penalty based on the distance between matching characters
83
+ distance = abs ( charPositions [ j ] - i ) ;
84
+ score += max ( 0 , 1 - ( distance * 0.25 ) ) ;
85
+ index = charPositions [ j ] + 1 ;
72
86
}
73
87
74
- // Find the next position of the character that is greater than or equal to index
75
- j = 0 ;
76
- while ( j < charPositions . length && charPositions [ j ] < index ) {
77
- j += 1 ;
78
- }
79
- if ( j === charPositions . length ) {
80
- continue ;
81
- }
88
+ // Calculate relative score
89
+ finalScore = score / input . length ;
82
90
83
- distance = abs ( charPositions [ j ] - i ) ;
84
- score += max ( 0 , 1 - ( distance * 0.25 ) ) ; // Subtract a penalty based on the distance between matching characters
85
- index = charPositions [ j ] + 1 ;
91
+ // A score above or equal to 0.7 indicates a match
92
+ return finalScore >= 0.7 ;
86
93
}
87
- finalScore = score / input . length ; // Calculate relative score
88
94
89
- return finalScore >= 0.65 ;
95
+ // Return false for completions smaller than the input
96
+ return false ;
90
97
}
91
98
92
99
0 commit comments