主题
乘法(*)。
传入多个数,返回计算结果。
import { times } from '@renzp/number-correct' times(2, 2); // 4 times(2, 2, 2); // 8
Array<Value>
type Value = string | number
string