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