round.js 246 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 /** * 四舍五入 * @param {[type]} num 数字 * @param {[type]} precision 精度 * @return {[type]} */ module.exports = (num, precision) => { precision = precision || 2; num = Number(num).toFixed(precision); return num; };