(start, end)
| 21 | // } |
| 22 | |
| 23 | function range (start, end) { |
| 24 | |
| 25 | debugger |
| 26 | if (start >= end) return []; |
| 27 | |
| 28 | debugger |
| 29 | return [start].concat(range(start + 1, end)) |
| 30 | |
| 31 | } |
| 32 | |
| 33 | |
| 34 |
nothing calls this directly
no outgoing calls
no test coverage detected