@stacrypt/world-countries-info
Version:
List of countries with useful info, and search functions
15 lines (14 loc) • 1.37 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.numericCodeToAlpha2 = exports.dialCodeToAlpha2 = exports.alpha3ToAlpha2 = exports.alpha2ToCountries = exports.getCountryByDialCode = exports.getFullSvgUrl = exports.getCountry = void 0;
var countries_1 = require("./data/countries");
Object.defineProperty(exports, "alpha2ToCountries", { enumerable: true, get: function () { return countries_1.alpha2ToCountries; } });
Object.defineProperty(exports, "alpha3ToAlpha2", { enumerable: true, get: function () { return countries_1.alpha3ToAlpha2; } });
Object.defineProperty(exports, "dialCodeToAlpha2", { enumerable: true, get: function () { return countries_1.dialCodeToAlpha2; } });
Object.defineProperty(exports, "numericCodeToAlpha2", { enumerable: true, get: function () { return countries_1.numericCodeToAlpha2; } });
var getCountry_1 = require("./getCountry");
Object.defineProperty(exports, "getCountry", { enumerable: true, get: function () { return getCountry_1.getCountry; } });
Object.defineProperty(exports, "getCountryByDialCode", { enumerable: true, get: function () { return getCountry_1.getCountryByDialCode; } });
var svgUrl_1 = require("./svgUrl");
Object.defineProperty(exports, "getFullSvgUrl", { enumerable: true, get: function () { return svgUrl_1.getFullSvgUrl; } });
exports.default = countries_1.alpha2ToCountries;