We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support for ISO 639-2 would be awesome :)
As you can see in that list some codes vary.
Example Germany:
639-2/T: DEU // supported 639-2/B: GER // not supported
Current behavior
const countries = require('i18n-iso-countries'); console.log('DEU (639-2/T) => ' + countries.getName('DEU', 'en')); // Germany console.log('GER (639-2/B) => ' + countries.getName('GER', 'de')); // undefined
Should result in:
const countries = require('i18n-iso-countries'); console.log('DEU (639-2/T) => ' + countries.getName('DEU', 'en')); // Germany console.log('GER (639-2/B) => ' + countries.getName('GER', 'de')); // Germany
Stackbliz Demo
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Support for ISO 639-2 would be awesome :)
As you can see in that list some codes vary.
Example Germany:
Current behavior
Should result in:
Stackbliz Demo
The text was updated successfully, but these errors were encountered: