forked from payscale/country-currency-map
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcountry-currency-map.js
77 lines (67 loc) · 2.33 KB
/
country-currency-map.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
import countryMap from './country-map';
import currencyMap from './currency-map';
import findKey from 'lodash.findkey';
// mapping of escaped currency symbol (eg '€') to actual currency character
const currencySymbolMap = {
'pound': '\xA3',
'euro': '\u20AC',
'yen': '\xA5'
};
function getCountry(countryName) {
return countryMap[countryName];
}
function getCurrency(currencyAbbr) {
return currencyMap[currencyAbbr];
}
function getCurrencyAbbreviation(countryName) {
let country = getCountry(countryName);
if(country) {
return country.currency;
}
return undefined;
}
function formatCurrency(value, currencyAbbr) {
let currency = getCurrency(currencyAbbr);
if(currency) {
return currency.symbolFormat
.replace(/&(\w+);/, (match, p1) => currencySymbolMap[p1] || p1)
.replace('{#}', value);
}
return `${value} ${currencyAbbr}`;
}
// Returns a list of currency objects.
function getCurrencyList() {
let currencyArray = Object.keys(currencyMap).map(currencyAbbr => {
return {
abbr: currencyAbbr,
name: currencyMap[currencyAbbr].name,
symbolFormat: currencyMap[currencyAbbr].symbolFormat
};
});
return currencyArray;
}
function getCurrencyAbbreviationFromName(currencyName) {
let abbr = findKey(currencyMap, function(c) {
return c.name === currencyName;
});
return abbr;
}
function getCurrencyNameFromCountry(countryName){
let currencyAbbr = getCurrencyAbbreviation(countryName);
if(currencyAbbr && currencyMap[currencyAbbr]) {
return currencyMap[currencyAbbr].name;
}
return undefined;
}
function getCountryByAbbreviation(countryAbbr) {
let country = findKey(countryMap, { 'abbreviation': countryAbbr });
return country;
}
module.exports.getCountry = getCountry;
module.exports.getCurrency = getCurrency;
module.exports.getCurrencyAbbreviation = getCurrencyAbbreviation;
module.exports.formatCurrency = formatCurrency;
module.exports.getCurrencyList = getCurrencyList;
module.exports.getCurrencyAbbreviationFromName = getCurrencyAbbreviationFromName;
module.exports.getCurrencyNameFromCountry = getCurrencyNameFromCountry;
module.exports.getCountryByAbbreviation = getCountryByAbbreviation;