( cell: CellOrUndefined | ResultCellOrUndefined, )
| 410 | }; |
| 411 | |
| 412 | const getXValue = ( |
| 413 | cell: CellOrUndefined | ResultCellOrUndefined, |
| 414 | ): XValue | undefined => |
| 415 | isNumber(cell) |
| 416 | ? isFiniteNumber(cell) |
| 417 | ? cell |
| 418 | : undefined |
| 419 | : isString(cell) |
| 420 | ? cell |
| 421 | : isTrue(cell) || isFalse(cell) |
| 422 | ? cell |
| 423 | : undefined; |
| 424 | |
| 425 | const getYValue = ( |
| 426 | cell: CellOrUndefined | ResultCellOrUndefined, |
no test coverage detected
searching dependent graphs…