(a: E, b: E)
| 869 | |
| 870 | it("differenceWith", () => { |
| 871 | const eq = <E extends { id: number }>(a: E, b: E) => a.id === b.id |
| 872 | const differenceWith = pipe(eq, Chunk.differenceWith) |
| 873 | |
| 874 | const chunk = Chunk.make({ id: 1 }, { id: 2 }, { id: 3 }) |
no outgoing calls
no test coverage detected