(platform: NodeJS.Platform)
| 73 | } |
| 74 | |
| 75 | function npmCommand(platform: NodeJS.Platform): string { |
| 76 | return platform === 'win32' ? 'npm.cmd' : 'npm'; |
| 77 | } |
| 78 | |
| 79 | function execFileText(command: string, args: readonly string[]): Promise<string> { |
| 80 | return new Promise((resolveOutput, reject) => { |
no outgoing calls
no test coverage detected