I'm looking for an operators used in other projects :
| Operator |
Description |
| =~ |
Matches a JavaScript regular expression. For example, [?(@.description =~ /cat.*/i)] matches items whose description starts with cat (case-insensitive). |
| contains |
Checks if a string contains the specified substring (case-sensitive), or an array contains the specified element. |
I'm looking for an operators used in other projects :