(fsPath: string)
| 624 | } |
| 625 | |
| 626 | export function getFolderHash(fsPath: string): string { |
| 627 | return crypto.createHash('sha256').update(fsPath).digest('hex'); |
| 628 | } |
| 629 | |
| 630 | export async function createFeaturesTempFolder(params: { cliHost: CLIHost; package: PackageConfiguration }): Promise<string> { |
| 631 | const { cliHost } = params; |
no outgoing calls
no test coverage detected