(domain: str)
| 276 | return False |
| 277 | |
| 278 | def get_domain_list(domain: str) -> list[str]: |
| 279 | domains = [] |
| 280 | if not domain: |
| 281 | return domains |
| 282 | for d in re.split(r'[,;]', domain): |
| 283 | d_clean = d.strip().rstrip('/') |
| 284 | if d_clean: |
| 285 | domains.append(d_clean) |
| 286 | return domains |
| 287 | |
| 288 | |
| 289 | def equals_ignore_case(str1: str, *args: str) -> bool: |
no test coverage detected