Releases: michaelwittig/node-i18n-iso-countries
Releases · michaelwittig/node-i18n-iso-countries
v7.0.0
v6.0.0
v5.0.0
Breaking changes
Drops support for Node 6 and 7!
v4.0.0
Breaking changes
Drops support for Node 4 and 5!
v3.0.0
Breaking changes
- Using this library now requires an environment that supports String.prototype.padStart available (can be polyfilled).
- Using this library in the browser now requires the developer to manually register the locale(s) they want to support:
var countries = require("i18n-iso-countries");
// Support french & english languages.
countries.registerLocale(require("i18n-iso-countries/langs/en.json"));
countries.registerLocale(require("i18n-iso-countries/langs/fr.json"));
details #64