(a, b)
| 1 | function CheckInput(a, b) { |
| 2 | if (typeof a !== 'number' || typeof b !== 'number') { |
| 3 | throw new TypeError('Arguments must be numbers') |
| 4 | } |
| 5 | } |
| 6 | |
| 7 | /** |
| 8 | * GetEuclidGCD Euclidean algorithm to determine the GCD of two numbers |
no outgoing calls
no test coverage detected