(ms: number)
| 142 | const DESKTOP_DATA_DIR = join(homedir(), ".executor"); |
| 143 | |
| 144 | const delay = (ms: number): Promise<void> => new Promise((r) => setTimeout(r, ms)); |
| 145 | |
| 146 | const parseVersionParts = (version: string): readonly number[] | null => { |
| 147 | const core = version.trim().split(/[+-]/, 1)[0]; |
no outgoing calls
no test coverage detected