(value: number | undefined)
| 140 | } |
| 141 | |
| 142 | function normalizedOutputFileBytes(value: number | undefined): number { |
| 143 | if (value === undefined) return DEFAULT_CODEX_OUTPUT_FILE_BYTES; |
| 144 | return Math.max(0, Number.isFinite(value) ? Math.floor(value) : DEFAULT_CODEX_OUTPUT_FILE_BYTES); |
| 145 | } |
| 146 | |
| 147 | function failedProcessResult( |
| 148 | error: Error, |