We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 85880a6 commit 49455a7Copy full SHA for 49455a7
src/ng/filter/filter.js
@@ -23,7 +23,9 @@
23
* which have property `name` containing "M" and property `phone` containing "1". A special
24
* property name `$` can be used (as in `{$:"text"}`) to accept a match against any
25
* property of the object. That's equivalent to the simple substring match with a `string`
26
- * as described above.
+ * as described above. The predicate can be negated by prefixing the string with `!`.
27
+ * For Example `{name: "!M"}` predicate will return an array of items which have property `name`
28
+ * not containing "M".
29
*
30
* - `function(value, index)`: A predicate function can be used to write arbitrary filters. The
31
* function is called for each element of `array`. The final result is an array of those
0 commit comments