We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65db09f commit 5c92cb5Copy full SHA for 5c92cb5
src/helpers/matchers/matchArrayValue.ts
@@ -10,5 +10,5 @@ export function matchArrayValue(
10
return prop.includes(matcher);
11
}
12
13
- return !matcher.some((e) => !prop.includes(e));
+ return matcher.every((e) => prop.includes(e));
14
0 commit comments