(*groups)
| 574 | return " ".join(_d[c] for c in s) |
| 575 | |
| 576 | def _join(*groups) -> str: |
| 577 | return " ".join(_digits(g) for g in groups) |
| 578 | |
| 579 | # Match longest pattern first to avoid partial matches |
| 580 | # 11-digit: 1-800-555-0199 |
no test coverage detected