Appearance
高精度除法(支持多个参数连除)。
import { mathDiv } from '@base-web-kits/base-tools-ts'; mathDiv(1, 3); // => 0.333333... mathDiv('10', '4'); // => 2.5 mathDiv(100, 5, 2); // => 10 // 多参数连除: 100/5/2