()
| 8 | |
| 9 | // Return the maximum value a javascript Number can get before loosing precision |
| 10 | export function getMaximumJavascriptInt(): number{ |
| 11 | return 9007199254740992; // 2^53 |
| 12 | } |
| 13 | |
| 14 | // Return a Pos object corresponding to a direction |
| 15 | // x and y values can be between -a and a, but they can't both be 0 |
no outgoing calls
no test coverage detected