-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
40 lines (24 loc) · 848 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
'use strict';
const CountryJSON = require('./data/Country.json');
const CountryArray = Object.values(CountryJSON);
const Country = {
JSON : () => {
return CountryJSON;
},
Array : () => {
return CountryArray;
},
findCountry: (filterValue, filterLanguage="ENG") => {
let rc = CountryArray.find( c => {
let nameList = c.LIST_OF_NAME[filterLanguage];
let name = nameList.find( name => { return name === filterValue });
if(name) return c;
});
return rc;
},
findISO2Code : (filterValue, filterLanguage="ENG") => {
let rc = Country.findCountry(filterValue, filterLanguage);
return rc ? rc.ISO2_CODE : null;
}
}
module.exports = Country;