Skip to content

Commit

Permalink
feat(search): linting fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lubber-de committed Dec 14, 2023
1 parent e601bc8 commit 314d636
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/definitions/modules/search.js
Original file line number Diff line number Diff line change
Expand Up @@ -632,7 +632,7 @@
exactResults = [],
fuzzyResults = [],
searchExp = searchTerm.replace(regExp.escape, '\\$&'),
matchRegExp= new RegExp(regExp.beginsWith + searchExp, settings.ignoreSearchCase ? 'i' : ''),
matchRegExp = new RegExp(regExp.beginsWith + searchExp, settings.ignoreSearchCase ? 'i' : ''),

// avoid duplicates when pushing results
addResult = function (array, result) {
Expand Down

0 comments on commit 314d636

Please sign in to comment.