(number)
| 17497 | } |
| 17498 | |
| 17499 | function absRound (number) { |
| 17500 | if (number < 0) { |
| 17501 | return Math.round(-1 * number) * -1; |
| 17502 | } else { |
| 17503 | return Math.round(number); |
| 17504 | } |
| 17505 | } |
| 17506 | |
| 17507 | // FORMATTING |
| 17508 |
no outgoing calls
no test coverage detected