(rows, y, xMin, xMax)
| 79 | } |
| 80 | |
| 81 | function allBlank(rows, y, xMin, xMax) { |
| 82 | for (let x = xMin; x < xMax; x++) { |
| 83 | if (conflictExists(rows, x, y)) { |
| 84 | return false; |
| 85 | } |
| 86 | } |
| 87 | return true; |
| 88 | } |
| 89 | |
| 90 | function addRowSpanCells(table) { |
| 91 | table.forEach(function (row, rowIndex) { |
no test coverage detected
searching dependent graphs…