(value)
| 21 | } |
| 22 | |
| 23 | function normalizeMaxInlineFiles(value) { |
| 24 | const parsed = Number(value); |
| 25 | if (!Number.isFinite(parsed) || parsed < 0) { |
| 26 | return DEFAULT_INLINE_DIFF_MAX_FILES; |
| 27 | } |
| 28 | return Math.floor(parsed); |
| 29 | } |
| 30 | |
| 31 | function normalizeMaxInlineDiffBytes(value) { |
| 32 | const parsed = Number(value); |
no outgoing calls
no test coverage detected