UNPKG
@myno_21/imdb-scraper
Version:
latest (1.0.2)
1.0.2
1.0.1
1.0.0
Get imdb information easily & quickly.
github.com/TrishCX/Imdb-Scraper
@myno_21/imdb-scraper
/
src
/
common
/
ordinalSuffix.js
14 lines
(13 loc)
•
292 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
export
default
function
ordinalSuffix
(
i
) {
var
j = i %
10
, k = i %
100
;
if
(j ==
1
&& k !=
11
) {
return
i +
"st"
; }
if
(j ==
2
&& k !=
12
) {
return
i +
"nd"
; }
if
(j ==
3
&& k !=
13
) {
return
i +
"rd"
; }
return
i +
"th"
; }