Return the first contiguous base64 blob at or above the threshold, or None.
(text: str)
| 11 | |
| 12 | |
| 13 | def find_large_base64_blob(text: str) -> Optional[str]: |
| 14 | """Return the first contiguous base64 blob at or above the threshold, or None.""" |
| 15 | match = _BASE64_BLOB_PATTERN.search(text) |
| 16 | return match.group(0) if match else None |
| 17 | |
| 18 | |
| 19 | def format_duration_hms(total_seconds: int) -> str: |
no outgoing calls
no test coverage detected