(number)
| 3177 | } |
| 3178 | |
| 3179 | function absRound(number) { |
| 3180 | if (number < 0) { |
| 3181 | return Math.round(-1 * number) * -1; |
| 3182 | } else { |
| 3183 | return Math.round(number); |
| 3184 | } |
| 3185 | } |
| 3186 | |
| 3187 | // compare two arrays, return the number of differences |
| 3188 | function compareArrays(array1, array2, dontConvert) { |
no outgoing calls
no test coverage detected