UNPKG
phoenixtree-common-fn
Version:
latest (1.1.5)
1.1.5
1.1.4
1.1.3
1.1.2
1.1.1
1.1.0
通用函数插件
github.com/mosewutong/phoenixtree-common-fn
mosewutong/phoenixtree-common-fn
phoenixtree-common-fn
/
number-common-utils.js
8 lines
(6 loc)
•
219 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
let
number
= {};
// 对金额格式化,每三位加一个逗号,保留两位小数
number
.
initNum
=
function
(
num
) {
return
num.
toFixed
(
2
).
replace
(
/(\d)(?=(\d{3})+\.)/g
,
'$1,'
);; }
module
.
exports
=
number
;