UNPKG
@juici/math
Version:
latest (0.1.0)
0.1.0
A mathematics utility library
Juici/math.js
@juici/math
/
src
/
__tests__
/
BigDecimal
/
abs.test.ts
8 lines
(6 loc)
•
244 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
import
{ BigDecimal } from
"../../BigDecimal"
;
test
(
"abs"
, () => {
expect
(
new
BigDecimal
(
"-1"
).
abs
()).
toEqualDecimal
(
"1"
);
expect
(
new
BigDecimal
(
"0"
).
abs
()).
toEqualDecimal
(
"0"
);
expect
(
new
BigDecimal
(
"1"
).
abs
()).
toEqualDecimal
(
"1"
); });