(infoPath: string)
| 54 | } |
| 55 | |
| 56 | export function removeInfo(infoPath: string): void { |
| 57 | if (fs.existsSync(infoPath)) fs.unlinkSync(infoPath); |
| 58 | } |
| 59 | |
| 60 | function readLockInfo(lockPath: string): DaemonLockInfo | null { |
| 61 | if (!fs.existsSync(lockPath)) return null; |
no outgoing calls
no test coverage detected
searching dependent graphs…