UNPKG
reddcore
Version:
latest (0.1.40)
0.1.40
0.1.36
Reddcoin Core Library in Javascript
github.com/reddcoin-project/reddcore
reddcoin-project/reddcore
reddcore
/
patches
/
Number.monkey.js
9 lines
(8 loc)
•
246 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
exports
.
patch
=
function
(
Number
) {
//round to specified number of places
Number
.
prototype
.
round
=
function
(
places
) {
if
(!places)
return
Math
.
round
(
this
);
var
tmp =
Math
.
pow
(
10
,places);
return
Math
.
round
(
this
* tmp) / tmp; }; };