| 20 | * Uses content-based detection via isBinaryFile |
| 21 | */ |
| 22 | export class BinaryFileHandler implements FileHandler { |
| 23 | async canHandle(filePath: string): Promise<boolean> { |
| 24 | // Content-based binary detection using isBinaryFile |
| 25 | try { |
nothing calls this directly
no outgoing calls
no test coverage detected