UNPKG
numfmt
Version:
latest (3.2.3)
next (3.0.0-rc1)
3.2.3
3.2.2
3.2.1
3.2.0
3.1.4
3.1.3
3.1.2
3.1.1
3.1.0
3.0.0
3.0.0-rc1
2.5.2
2.5.1
2.5.0
2.4.3
2.4.2
2.4.1
2.4.0
2.3.1
2.3.0
2.2.0
2.1.0
2.0.1
2.0.0
1.0.0
0.9.7
0.9.6
0.9.5
0.9.4
0.9.3
0.9.2
0.9.1
0.9.0
Full Excel style number formatting
github.com/borgar/numfmt
borgar/numfmt
numfmt
/
test.mjs
7 lines
(5 loc)
•
147 B
JavaScript
View Raw
1
2
3
4
5
6
7
import
{ round }
from
'./lib/round.js'
;
const
s =
75
* (
1
+
0.255
);
console
.
log
(s);
console
.
log
(
round
(
round
(s,
3
),
2
));
console
.
log
(
round
(s,
2
));