(ms: number)
| 153 | const DESKTOP_DATA_DIR = join(homedir(), ".executor"); |
| 154 | |
| 155 | const delay = (ms: number): Promise<void> => new Promise((r) => setTimeout(r, ms)); |
| 156 | |
| 157 | const parseVersionParts = (version: string): readonly number[] | null => { |
| 158 | const core = version.trim().split(/[+-]/, 1)[0]; |
no outgoing calls
no test coverage detected