(value, criteria_pattern)
| 221 | |
| 222 | |
| 223 | def istartswith(value, criteria_pattern): |
| 224 | if criteria_pattern is None: |
| 225 | return False |
| 226 | |
| 227 | value, criteria_pattern = ensure_operators_are_strings(value, criteria_pattern) |
| 228 | return value.lower().startswith(criteria_pattern.lower()) |
| 229 | |
| 230 | |
| 231 | def endswith(value, criteria_pattern): |
nothing calls this directly
no test coverage detected