(alloc, col)
| 4 | |
| 5 | (function () { |
| 6 | function next(alloc, col) { |
| 7 | if (alloc[col] > 0) { |
| 8 | return next(alloc, col + 1); |
| 9 | } |
| 10 | return col; |
| 11 | } |
| 12 | |
| 13 | function layoutTable(table) { |
| 14 | let alloc = {}; |
no outgoing calls
no test coverage detected
searching dependent graphs…