chineseCompactUnits top-level constant
NumeralUnitSet
const chineseCompactUnits
Simplified Chinese compact units: 万, 亿, 兆.
Implementation
const chineseCompactUnits = NumeralUnitSet([
NumeralUnit(1, ''),
NumeralUnit(10000, '万'),
NumeralUnit(100000000, '亿'),
NumeralUnit(1000000000000, '兆'),
]);