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 32be56e commit 1b1d870Copy full SHA for 1b1d870
package.json
@@ -1,5 +1,5 @@
1
{
2
- "version": "3.1.0",
+ "version": "3.1.1",
3
"name": "react-rock",
4
"author": "Naxrul Ahmed",
5
"license": "MIT",
src/Finder.ts
@@ -6,6 +6,8 @@ const excuteQuery: any = {
6
contain: (v: any, qv: any) => typeof v === 'string' && v.search(qv) !== -1,
7
startWith: (v: any, qv: any) => typeof v === 'string' && v.startsWith(qv),
8
endWith: (v: any, qv: any) => typeof v === 'string' && v.endsWith(qv),
9
+ equalWith: (v: any, qv: any) => v === qv,
10
+ notEqualWith: (v: any, qv: any) => v !== qv,
11
lt: (v: any, qv: any) => isNum(v) && v < qv,
12
gt: (v: any, qv: any) => isNum(v) && v > qv,
13
lte: (v: any, qv: any) => isNum(v) && v <= qv,
0 commit comments