金额转为大写金额
将数字金额/字符串金额转换为大写金额,金额只能保留两位小数
安装
npm install chinesmoney --save
使用
import chinesmoney from 'chinesmoney'
例子
console.log(chinesmoney(2))
// 输出:贰元整
console.log(chinesmoney('2'))
// 输出:贰元整
console.log(chinesmoney(-2))
// 输出:负贰元整
金额转大写
将数字金额/字符串金额转换为大写金额,金额只能保留两位小数
npm install chinesmoney --save
import chinesmoney from 'chinesmoney'
console.log(chinesmoney(2))
// 输出:贰元整
console.log(chinesmoney('2'))
// 输出:贰元整
console.log(chinesmoney(-2))
// 输出:负贰元整