calculation.a2c374f8.js 190 B

1
  1. function h(n,r){let c,e,t;try{c=n.toString().split(".")[1].length}catch{c=0}try{e=r.toString().split(".")[1].length}catch{e=0}return t=Math.pow(10,Math.max(c,e)),(n*t+r*t)/t}export{h as a};