(first, second)
| 3064 | } |
| 3065 | |
| 3066 | function operatorEqualTo(first, second) { |
| 3067 | return first.toUpperCase() === second.toUpperCase(); |
| 3068 | } |
| 3069 | |
| 3070 | function operatorStartsWith(first, second) { |
| 3071 | return second.toUpperCase().indexOf(first.toUpperCase()) === 0; |
nothing calls this directly
no outgoing calls
no test coverage detected