* Count number of rows. * * @returns {number}
()
| 397 | * @returns {number} |
| 398 | */ |
| 399 | countRows() { |
| 400 | if (this.hot!.hasHook('modifySourceLength')) { |
| 401 | const modifiedSourceLength = this.hot!.runHooks('modifySourceLength'); |
| 402 | |
| 403 | if (typeof modifiedSourceLength === 'number' && Number.isInteger(modifiedSourceLength)) { |
| 404 | return modifiedSourceLength; |
| 405 | } |
| 406 | } |
| 407 | |
| 408 | return this.data!.length; |
| 409 | } |
| 410 | |
| 411 | /** |
| 412 | * Count number of columns. |
no test coverage detected