(key: PropertyKey, includeGroupOperators = true)
| 892 | } |
| 893 | |
| 894 | static isOperator(key: PropertyKey, includeGroupOperators = true): boolean { |
| 895 | if (!includeGroupOperators) { |
| 896 | return key in QueryOperator; |
| 897 | } |
| 898 | |
| 899 | return key in GroupOperator || key in QueryOperator; |
| 900 | } |
| 901 | |
| 902 | static hasNestedKey(object: unknown, key: string): boolean { |
| 903 | if (!object) { |
no outgoing calls
no test coverage detected