(envVal: string | undefined, cpuCount: number)
| 85 | * the main thread + UI; never zero — parsing always needs a worker). |
| 86 | */ |
| 87 | export function resolveParsePoolSize(envVal: string | undefined, cpuCount: number): number { |
| 88 | if (envVal !== undefined && envVal !== '') { |
| 89 | const n = Number(envVal); |
| 90 | if (Number.isFinite(n) && n >= 0) { |
| 91 | return Math.max(1, Math.min(Math.floor(n), MAX_PARSE_POOL_SIZE)); |
| 92 | } |
| 93 | // non-numeric / negative → fall through to the default |
| 94 | } |
| 95 | return Math.max(1, Math.min(cpuCount - 1, DEFAULT_PARSE_POOL_CAP)); |
| 96 | } |
| 97 | |
| 98 | interface ParseJob { |
| 99 | id: number; |
no outgoing calls
no test coverage detected