(filePath: string)
| 28 | } |
| 29 | |
| 30 | function getAsarUnpackedPath(filePath: string) { |
| 31 | return filePath.includes('.asar') ? filePath.replace('.asar', '.asar.unpacked') : null |
| 32 | } |
| 33 | |
| 34 | function isExecutableFile(filePath: string) { |
| 35 | try { |
no outgoing calls
no test coverage detected