(a: E, b: E)
| 859 | |
| 860 | it("differenceWith", () => { |
| 861 | const eq = <E extends { id: number }>(a: E, b: E) => a.id === b.id |
| 862 | const differenceWith = pipe(eq, Chunk.differenceWith) |
| 863 | |
| 864 | const chunk = Chunk.make({ id: 1 }, { id: 2 }, { id: 3 }) |
no outgoing calls
no test coverage detected