We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e90556d commit caa7dc5Copy full SHA for caa7dc5
src/libs/FastSearch.ts
@@ -16,7 +16,7 @@ type SearchableData<T> = {
16
};
17
18
// There are certain characters appear very often in our search data (email addresses), which we don't need to search for.
19
-const charSetToSkip = new Set(['@', '.', '#', '$', '%', '&', '*', '+', '-', '/', ':', ';', '<', '=', '>', '?', '_', '~', '!', ' ']);
+const charSetToSkip = new Set(['@', '.', '#', '$', '%', '&', '*', '+', '-', '/', ':', ';', '<', '=', '>', '?', '_', '~', '!', ' ', ',']);
20
21
/**
22
* Creates a new "FastSearch" instance. "FastSearch" uses a suffix tree to search for substrings in a list of strings.
0 commit comments