var unit = function(cell) { if (cell >= 10000) { var result = (cell / 10000) result = result.toFixed(2) return result + '亿' } return cell + '万' } module.exports.unit = unit