(value: T, othVal: T)
| 12 | } |
| 13 | |
| 14 | function defaultComparator<T>(value: T, othVal: T) { |
| 15 | return value === othVal |
| 16 | } |
| 17 | |
| 18 | export function useArrayDifference<T>( |
| 19 | list: MaybeRefOrGetter<T[]>, |
nothing calls this directly
no outgoing calls
no test coverage detected