(ms: number)
| 192 | const DESKTOP_DATA_DIR = join(homedir(), ".executor"); |
| 193 | |
| 194 | const delay = (ms: number): Promise<void> => new Promise((r) => setTimeout(r, ms)); |
| 195 | |
| 196 | const parseVersionParts = (version: string): readonly number[] | null => { |
| 197 | const core = version.trim().split(/[+-]/, 1)[0]; |
no outgoing calls
no test coverage detected