We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a257c75 commit 8b85d98Copy full SHA for 8b85d98
src/path/functions/match.ts
@@ -49,6 +49,7 @@ export class Match implements FilterFunction {
49
this.#cache = new LRUCache(this.cacheSize);
50
}
51
52
+ // eslint-disable-next-line sonarjs/cognitive-complexity
53
public call(s: string, pattern: string): boolean {
54
if (this.cacheSize > 0) {
55
const re = this.#cache.get(pattern);
src/path/functions/search.ts
@@ -50,6 +50,7 @@ export class Search implements FilterFunction {
56
0 commit comments