JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 159754
  • Score
    100M100P100Q194203F

Letters following a numeral denoting that it is an ordinal number

Package Exports

  • ordinal

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (ordinal) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

ordinal

Letters following a numeral denoting that it is an ordinal number.

Install

npm install ordinal

Usage

Use with numbers or numeric strings. Anything else will throw an exception.

var ordinal = require('ordinal').english;

ordinal(1); //=> '1st'
ordinal(2); //=> '2nd'
ordinal(3); //=> '3rd'
ordinal(4); //=> '4th'

ordinal(11); //=> '11th'
ordinal(12); //=> '12th'
ordinal(13); //=> '13th'

ordinal(21); //=> '21st'
ordinal(22); //=> '22nd'
ordinal(23); //=> '23rd'
ordinal(24); //=> '24th'

To get just the indicator:

var ordinal = require('ordinal').english;
var indicator = ordinal.indicator;

indicator(1); //=> 'st'
indicator(2); //=> 'nd'
indicator(3); //=> 'rd'
indicator(4); //=> 'th'

indicator(11); //=> 'th'
indicator(12); //=> 'th'
indicator(13); //=> 'th'

indicator(21); //=> 'st'
indicator(22); //=> 'nd'
indicator(23); //=> 'rd'
indicator(24); //=> 'th'

Other languages may be supported in the future. Such as:

  • Catalan
  • Croatian
  • Czech
  • Danish
  • Dutch
  • Estonian
  • Faroese
  • Finnish
  • French
  • Galician
  • German
  • Hungarian
  • Icelandic
  • Irish
  • Italian
  • Latin
  • Latvian
  • Malay
  • Norwegian
  • Philippine
  • Polish
  • Portuguese
  • Russian
  • Serbian
  • Slovak
  • Slovene
  • Spanish
  • Swedish
  • Turkish

LICENSE

MIT