(result)
| 928 | } |
| 929 | |
| 930 | function getRandomPosition (result) { |
| 931 | const row = Math.floor(Math.random() * result.presetSize.rows) |
| 932 | const col = Math.floor(Math.random() * result.presetSize.cols) |
| 933 | const pos = { x: 6 + 8 * col, y: 6 + 8 * row } |
| 934 | return pos |
| 935 | } |
| 936 | |
| 937 | module.exports = { |
| 938 | presets, |
no outgoing calls
no test coverage detected