A very simple Node.js module that gives the ordinal representation of numbers in German: zwölfte for 12 etc. Based on a static list. Works up to 30.
npm install german-ordinals
var ordinals = require('german-ordinals');
// zwölfte
console.log(`12 => ${ordinals.getOrdinal(12)}`);
Will throw an error when the number is too high.
N/A