(value)
| 3057 | } |
| 3058 | |
| 3059 | function startsWith(value) { |
| 3060 | return { |
| 3061 | operator: operatorStartsWith, |
| 3062 | operand: value |
| 3063 | }; |
| 3064 | } |
| 3065 | |
| 3066 | function operatorEqualTo(first, second) { |
| 3067 | return first.toUpperCase() === second.toUpperCase(); |
nothing calls this directly
no outgoing calls
no test coverage detected