(row, lineNum, result)
| 95 | Table.reset = () => debug.reset(); |
| 96 | |
| 97 | function doDraw(row, lineNum, result) { |
| 98 | let line = []; |
| 99 | row.forEach(function (cell) { |
| 100 | line.push(cell.draw(lineNum)); |
| 101 | }); |
| 102 | let str = line.join(''); |
| 103 | if (str.length) result.push(str); |
| 104 | } |
| 105 | |
| 106 | module.exports = Table; |