(n: BigDecimal)
| 671 | * @category math |
| 672 | */ |
| 673 | export const sign = (n: BigDecimal): Ordering => n.value === bigint0 ? 0 : n.value < bigint0 ? -1 : 1 |
| 674 | |
| 675 | /** |
| 676 | * Determines the absolute value of a given `BigDecimal`. |
no outgoing calls
no test coverage detected
searching dependent graphs…