Package detail

js-ordinal

GeekAb14MIT1.0.1

Simple utility to translate from regular numbers to their ordinal representation.

ordinal, number, 1st, 2nd

readme

Simple utility to translate numeral to their english ordinal representation.

Install

npm

npm install --save js-ordinal

yarn

yarn add js-ordinal

Few Examples

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'