(id: string, owner: Owner)
| 412 | const committedForOwner = (owner: Owner) => |
| 413 | sorted.filter((p) => p.owner === owner && p.position !== ""); |
| 414 | const committedIndex = (id: string, owner: Owner): number => |
| 415 | committedForOwner(owner).findIndex((p) => p.id === id); |
| 416 | const positionAbove = (id: string, owner: Owner): string => { |
| 417 | const committed = committedForOwner(owner); |
| 418 | const j = committedIndex(id, owner); |
no test coverage detected