node-excel-stream icon indicating copy to clipboard operation
node-excel-stream copied to clipboard

TypeError: Cannot read property 'length' of null

Open RashmiRanganathan opened this issue 3 years ago • 1 comments

Just tried to write into a file using documentation. Throws error

return this._rowZero + this._rows.length; ^

TypeError: Cannot read property 'length' of null at WorksheetWriter.get _nextRow [as _nextRow]

RashmiRanganathan avatar Dec 02 '21 10:12 RashmiRanganathan

Try return this._rowZero && this._rows.length;

linspw avatar Dec 02 '21 12:12 linspw