函数库, 面向复杂业务场景的 js 类库
浮点数精度除法, 可以实现精准除法, 不会让小数失真
Demo:
import { floatDiv } from 'func-package';console.log(floatDiv(10.44, 100)); // -> 0.1044