(n: BigDecimal)
| 1073 | * @category predicates |
| 1074 | */ |
| 1075 | export const isInteger = (n: BigDecimal): boolean => normalize(n).scale <= 0 |
| 1076 | |
| 1077 | /** |
| 1078 | * Checks if a given `BigDecimal` is `0`. |
nothing calls this directly
no test coverage detected
searching dependent graphs…