(value, criteria_pattern)
| 237 | |
| 238 | |
| 239 | def iendswith(value, criteria_pattern): |
| 240 | if criteria_pattern is None: |
| 241 | return False |
| 242 | |
| 243 | value, criteria_pattern = ensure_operators_are_strings(value, criteria_pattern) |
| 244 | return value.lower().endswith(criteria_pattern.lower()) |
| 245 | |
| 246 | |
| 247 | def less_than(value, criteria_pattern): |
nothing calls this directly
no test coverage detected