Simple utility to translate numeral to their english ordinal representation.
First of all, you need to have npm or yarn installed. Follow these steps, npm or yarn, to install one of them.
npm install --save js-ordinal
yarn add js-ordinal
const o = require('js-ordinal')
o.toOrdinal(1) // '1st'
o.toOrdinal(2) // '2nd'
o.toOrdinal(11) // '11th'
o.toOrdinal(12) // '12th'
o.toOrdinal(21) // '21st'
Getting only ordinal
o.ordinalSuffix(1) // 'st'
You can know more about the project on the npm website and the official website.
-
Add unit test
-
Support additional language