Files
timothycarambat 0a5d2039ea Decrease embedding result window size for most searches
move fuzzy match to util
2023-09-14 13:56:27 -07:00

12 lines
323 B
JavaScript

// Dirty, but works fast for most cases. Wont be perfect but also not something we should rely
// heavily on for exact text searching.
function fuzzyMatch(pattern, str) {
pattern = ".*" + pattern.split("").join(".*") + ".*";
const re = new RegExp(pattern);
return re.test(str);
}
module.exports = {
fuzzyMatch,
};