(last: TableRow | undefined)
| 781 | ) |
| 782 | : [...rows].sort((a, b) => a.position - b.position) |
| 783 | const fitsAfter = (last: TableRow | undefined) => |
| 784 | last === undefined || |
| 785 | (byKey |
| 786 | ? (last.orderKey as string) >= (row.orderKey as string) |
| 787 | : last.position >= row.position) |
| 788 | |
| 789 | const pages = byKey |
| 790 | ? old.pages |
no outgoing calls
no test coverage detected