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