([entry1, entry2]: Pair<Value>)
| 15 | export const pairClone = <Value>(array: Pair<Value>): Pair<Value> => [...array]; |
| 16 | |
| 17 | export const pairIsEqual = <Value>([entry1, entry2]: Pair<Value>): boolean => |
| 18 | entry1 === entry2; |
no outgoing calls
no test coverage detected
searching dependent graphs…