(a, b)
| 14 | }; |
| 15 | |
| 16 | export const areAddressesEqual = (a, b) => { |
| 17 | if (a.colour !== b.colour) return false; |
| 18 | if (a.number !== b.number) return false; |
| 19 | return true; |
| 20 | }; |
| 21 | |
| 22 | export const getAddressFromScreen = (screen, colour) => { |
| 23 | const number = colour.screens.indexOf(screen); |
nothing calls this directly
no outgoing calls
no test coverage detected