(positions, corners)
| 42 | }; |
| 43 | |
| 44 | export const getRelativePositions = (positions, corners) => { |
| 45 | const relativePositions = positions.map((position) => |
| 46 | getRelativePosition(position, corners) |
| 47 | ); |
| 48 | return relativePositions; |
| 49 | }; |
| 50 | |
| 51 | // DEEPER screen position -> HIGHER screen position |
| 52 | // |
no test coverage detected