// js小数加减乘除时精度修正
export const floatObj = function () {
//加法
function add(a,b){
return math.number(math.add(math.bignumber(a), math.bignumber(b))) ;
};
//减法
function subtract(a,b){
return math.number(math.subtract(math.bignumber(a), math.bignumber(b)));
};
// 乘法
function multiply(a,b){
return math.number(math.multiply(math.bignumber(a), math.bignumber(b)));
};
// 除法
function divide(a,b){
return math.number(math.divide(math.bignumber(a), math.bignumber(b)));
};
return {
add: add,
subtract: subtract,
multiply: multiply,
divide: divide
}
}();