(set, id)
| 925 | |
| 926 | describe("sets - mutate - 1", () => { |
| 927 | const findById = (set, id) => { |
| 928 | for (const item of set) { |
| 929 | if (item.id === id) return item |
| 930 | } |
| 931 | } |
| 932 | runPatchTests( |
| 933 | "", |
| 934 | new Set([ |
no outgoing calls
no test coverage detected
searching dependent graphs…