(colIndex, count = 1)
| 375 | } |
| 376 | |
| 377 | removeColumns(colIndex, count = 1) { |
| 378 | // Remove a column with data |
| 379 | this.cacheState(); |
| 380 | |
| 381 | this.table.columns.splice(colIndex, count); |
| 382 | this.table.rows.forEach(row => { |
| 383 | row.splice(colIndex, count); |
| 384 | }); |
| 385 | } |
| 386 | |
| 387 | _assign(target, prop, value) { |
| 388 | this.cacheState(); |
no test coverage detected