(name: string)
| 121 | } |
| 122 | |
| 123 | function isNoisyName(name: string): boolean { |
| 124 | return NAME_PATTERN_BLOCKLIST.some(re => re.test(name)) |
| 125 | } |
| 126 | |
| 127 | /** |
| 128 | * Length cap + trim + dedupe + sort. `applyCharFilter` — skip for trusted |
no outgoing calls
no test coverage detected