(path: string, options?: StateHashOptions)
| 374 | } |
| 375 | |
| 376 | async hashFile(path: string, options?: StateHashOptions): Promise<string> { |
| 377 | return hashBytes(await this.readFileBytes(path), options); |
| 378 | } |
| 379 | |
| 380 | async detectFile(path: string): Promise<StateFileDetection> { |
| 381 | return detectFileFromBytes(path, await this.readFileBytes(path)); |
nothing calls this directly
no test coverage detected