(a, index, count, ...rest)
| 2 | const Excel = verquire('exceljs'); |
| 3 | |
| 4 | const spliceArray = (a, index, count, ...rest) => { |
| 5 | const clone = [...a]; |
| 6 | clone.splice(index, count, ...rest); |
| 7 | return clone; |
| 8 | }; |
| 9 | |
| 10 | const values = [ |
| 11 | ['Date', 'Id', 'Word'], |
no test coverage detected
searching dependent graphs…