| 10 | |
| 11 | /** Class holding methods for hashing a directory. */ |
| 12 | export abstract class DirectoryHash { |
| 13 | /** Computes a hash for the given directory. */ |
| 14 | static async compute(dirPath: string): Promise<string> { |
| 15 | return (await hashElement(dirPath, {})).hash; |
nothing calls this directly
no outgoing calls
no test coverage detected