to-chinese-numeral
A function that takes a Number as its argument and returns a Chinese numeral string.
Install
npm
npm install to-chinese-numeral
yarn
yarn add to-chinese-numeral
Usage
import toChineseNumeral from "to-chinese-numeral"
try {
const num = toChineseNumeral(156)
} catch (error) {
console.error(error.message)
}
Valid inputs
The input argument has to be a Number
, otherwise a TypeError
will be thrown.
The input argument has to be in the range [-99999.999, 99999.999], otherwise a RangeError
will be thrown.
Credits
This package was inspired by a challenge on codewars.com.