(number)
| 679 | } |
| 680 | |
| 681 | function absFloor(number) { |
| 682 | if (number < 0) { |
| 683 | // -0 -> 0 |
| 684 | return Math.ceil(number) || 0; |
| 685 | } else { |
| 686 | return Math.floor(number); |
| 687 | } |
| 688 | } |
| 689 | |
| 690 | function toInt(argumentForCoercion) { |
| 691 | var coercedNumber = +argumentForCoercion, |
no outgoing calls
no test coverage detected