(ms: number)
| 186 | const DESKTOP_DATA_DIR = join(homedir(), ".executor"); |
| 187 | |
| 188 | const delay = (ms: number): Promise<void> => new Promise((r) => setTimeout(r, ms)); |
| 189 | |
| 190 | const parseVersionParts = (version: string): readonly number[] | null => { |
| 191 | const core = version.trim().split(/[+-]/, 1)[0]; |
no outgoing calls
no test coverage detected