(value: number, min: number, max: number)
| 433 | const currentLine = (row: number) => state.lines[row] || ''; |
| 434 | const currentLineLen = (row: number) => cpLen(currentLine(row)); |
| 435 | const clamp = (value: number, min: number, max: number) => |
| 436 | Math.min(Math.max(value, min), max); |
| 437 | |
| 438 | if ( |
| 439 | startRow > endRow || |
no outgoing calls
no test coverage detected