UNPKG

mout

Version:

Modular Utilities

23 lines (22 loc) 465 B
"use strict"; exports.__esModule = true; /** * Returns "nth" of number (1 = "st", 2 = "nd", 3 = "rd", 4..10 = "th", ...) */ function nth(i) { var t = i % 100; if (t >= 10 && t <= 20) { return 'th'; } switch (i % 10) { case 1: return 'st'; case 2: return 'nd'; case 3: return 'rd'; default: return 'th'; } } exports["default"] = nth;