UNPKG

gaga-js-utils

Version:

js tools

6 lines 190 B
// 数字千分位分割 exports.thousandth = (num) => { return num.toString().indexOf(".") !== -1 ? num.toLocaleString() : num.toString().replace(/(\d)(?=(?:\d{3})+$)/g, "$1,"); }