Skip to content

Commit 3cae6a7

Browse files
committed
refactor: fix function jsdoc
Signed-off-by: Snehil Shah <snehilshah.989@gmail.com>
1 parent dc73372 commit 3cae6a7

File tree

1 file changed

+41
-34
lines changed

1 file changed

+41
-34
lines changed

lib/node_modules/@stdlib/repl/lib/filter_by_prefix.js

+41-34
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,10 @@ var abs = require( '@stdlib/math/base/special/abs' );
3030
/**
3131
* Checks if the completion is a fuzzy match for the input.
3232
*
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-
*
3633
* @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
4037
*/
4138
function fuzzyMatch( completion, input ) {
4239
var charPositions;
@@ -49,44 +46,54 @@ function fuzzyMatch( completion, input ) {
4946
var i;
5047
var j;
5148

49+
// Return true for perfect prefix
5250
if ( startsWith( completion, input ) ) {
53-
return true; // Return true for perfect matches
51+
return true;
5452
}
5553

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 );
6263
}
63-
positions[ char ].push( i );
64-
}
6564

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;
7286
}
7387

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;
8290

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;
8693
}
87-
finalScore = score / input.length; // Calculate relative score
8894

89-
return finalScore >= 0.65;
95+
// Return false for completions smaller than the input
96+
return false;
9097
}
9198

9299

0 commit comments

Comments
 (0)