italian-ordinals-cardinals
v5.3.0
Published
Ordinal and cardinal numbers in Italian
Downloads
781
Maintainers
Readme
italian-ordinals-cardinals
A very simple Node.js module that gives textual representations of ordinal numbers in Italian: 12 => dodicesimo (up to 1000000 included thanks to Marco Riva!).
Cardinal numbers representation in this module has been removed (but the package was not renamed). You should use n2words
directly which supports very well Italian.
Installation
npm install italian-ordinals-cardinals
Usage
var ordinalsCardinals = require('italian-ordinals-cardinals');
// dodicesimo
console.log(`12 => ${ordinalsCardinals.getOrdinal(12)}`);
Dependencies
n2words
for cardinal numbers before transforming them in ordinal numbers.