(op: Operator)
| 73 | return CollectionOperatorList.includes(op as CollectionOperator); |
| 74 | }; |
| 75 | export const isStringOperator = (op: Operator): op is StringOperator => { |
| 76 | return StringOperatorList.includes(op as StringOperator); |
| 77 | }; |
| 78 | |
| 79 | // Display labels for operators that differ from their source form. |
| 80 | const OPERATOR_DISPLAY: Record<string, string> = { |
no outgoing calls
no test coverage detected