(a, b)
| 38977 | } |
| 38978 | |
| 38979 | function littleThan(a, b) { |
| 38980 | // Avoid rounding error cause calculated tick coord different with extent. |
| 38981 | // It may cause an extra unecessary tick added. |
| 38982 | a = round$1(a); |
| 38983 | b = round$1(b); |
| 38984 | return inverse ? a > b : a < b; |
| 38985 | } |
| 38986 | } |
| 38987 | |
| 38988 | /* |
no test coverage detected