(start, stop, count)
| 643 | } |
| 644 | |
| 645 | function tickStep(start, stop, count) { |
| 646 | stop = +stop, start = +start, count = +count; |
| 647 | const reverse = stop < start, inc = reverse ? tickIncrement(stop, start, count) : tickIncrement(start, stop, count); |
| 648 | return (reverse ? -1 : 1) * (inc < 0 ? 1 / -inc : inc); |
| 649 | } |
| 650 | |
| 651 | function nice$1(start, stop, count) { |
| 652 | let prestep; |
no test coverage detected