(arr: ReadonlyArray<T>)
| 241 | if (a.length !== b.length) return false |
| 242 | |
| 243 | const sortById = <T extends { id: string }>(arr: ReadonlyArray<T>): ReadonlyArray<T> => |
| 244 | [...arr].sort((x, y) => x.id.localeCompare(y.id)) |
| 245 | |
| 246 | const aSorted = sortById(a) |
| 247 | const bSorted = sortById(b) |
no outgoing calls
no test coverage detected