(colour, number)
| 2 | // ADDRESS // |
| 3 | //=========// |
| 4 | export const makeAddress = (colour, number) => { |
| 5 | const address = { colour, number }; |
| 6 | return address; |
| 7 | }; |
| 8 | |
| 9 | export const getScreenFromAddress = (address, world = undefined) => { |
| 10 | if (address === undefined) return world; |
no outgoing calls
no test coverage detected