nth.js 484 B

12345678910111213141516171819202122232425
  1. /**
  2. * Returns "nth" of number (1 = "st", 2 = "nd", 3 = "rd", 4..10 = "th", ...)
  3. */
  4. function nth(i) {
  5. var t = (i % 100);
  6. if (t >= 10 && t <= 20) {
  7. return 'th';
  8. }
  9. switch(i % 10) {
  10. case 1:
  11. return 'st';
  12. case 2:
  13. return 'nd';
  14. case 3:
  15. return 'rd';
  16. default:
  17. return 'th';
  18. }
  19. }
  20. module.exports = nth;