UNPKG

nupp

Version:

一款由 typescript 编写的 数字转(汉字/大写)的 js 工具库

10 lines (9 loc) 280 B
/** * 转金额 * * integerValue: 整数部分 * * doubleValue: 浮点数部分 * * unit: 是否携带单位 * * sumCapital: 是否转大写 */ declare const sum: (integerValue: string, doubleValue: string, unit: boolean, sumCapital: boolean) => string; export default sum;