Skip to content

Commit

Permalink
fixes after merge
Browse files Browse the repository at this point in the history
  • Loading branch information
se-panfilov committed Apr 22, 2020
1 parent 8bef79a commit 65e584b
Show file tree
Hide file tree
Showing 2 changed files with 177 additions and 0 deletions.
91 changes: 91 additions & 0 deletions lib/system/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
System.register(["./lib/countries", "./lib/jsvat"], function (exports_1, context_1) {
"use strict";
var countries_1, countries;
var __moduleName = context_1 && context_1.id;
return {
setters: [
function (countries_1_1) {
countries_1 = countries_1_1;
exports_1({
"andorra": countries_1_1["andorra"],
"austria": countries_1_1["austria"],
"belgium": countries_1_1["belgium"],
"bulgaria": countries_1_1["bulgaria"],
"croatia": countries_1_1["croatia"],
"cyprus": countries_1_1["cyprus"],
"czechRepublic": countries_1_1["czechRepublic"],
"denmark": countries_1_1["denmark"],
"estonia": countries_1_1["estonia"],
"europe": countries_1_1["europe"],
"finland": countries_1_1["finland"],
"france": countries_1_1["france"],
"germany": countries_1_1["germany"],
"greece": countries_1_1["greece"],
"hungary": countries_1_1["hungary"],
"ireland": countries_1_1["ireland"],
"italy": countries_1_1["italy"],
"latvia": countries_1_1["latvia"],
"lithuania": countries_1_1["lithuania"],
"luxembourg": countries_1_1["luxembourg"],
"malta": countries_1_1["malta"],
"netherlands": countries_1_1["netherlands"],
"norway": countries_1_1["norway"],
"poland": countries_1_1["poland"],
"portugal": countries_1_1["portugal"],
"romania": countries_1_1["romania"],
"russia": countries_1_1["russia"],
"serbia": countries_1_1["serbia"],
"slovakiaRepublic": countries_1_1["slovakiaRepublic"],
"slovenia": countries_1_1["slovenia"],
"spain": countries_1_1["spain"],
"sweden": countries_1_1["sweden"],
"switzerland": countries_1_1["switzerland"],
"unitedKingdom": countries_1_1["unitedKingdom"]
});
},
function (jsvat_1_1) {
exports_1({
"checkVAT": jsvat_1_1["checkVAT"]
});
}
],
execute: function () {
exports_1("countries", countries = [
countries_1.andorra,
countries_1.austria,
countries_1.belgium,
countries_1.bulgaria,
countries_1.croatia,
countries_1.cyprus,
countries_1.czechRepublic,
countries_1.denmark,
countries_1.estonia,
countries_1.europe,
countries_1.finland,
countries_1.france,
countries_1.germany,
countries_1.greece,
countries_1.hungary,
countries_1.ireland,
countries_1.italy,
countries_1.latvia,
countries_1.lithuania,
countries_1.luxembourg,
countries_1.malta,
countries_1.netherlands,
countries_1.norway,
countries_1.poland,
countries_1.portugal,
countries_1.romania,
countries_1.russia,
countries_1.serbia,
countries_1.slovakiaRepublic,
countries_1.slovenia,
countries_1.spain,
countries_1.sweden,
countries_1.switzerland,
countries_1.unitedKingdom
]);
}
};
});
86 changes: 86 additions & 0 deletions lib/umd/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
(function (factory) {
if (typeof module === "object" && typeof module.exports === "object") {
var v = factory(require, exports);
if (v !== undefined) module.exports = v;
}
else if (typeof define === "function" && define.amd) {
define(["require", "exports", "./lib/countries", "./lib/countries", "./lib/jsvat"], factory);
}
})(function (require, exports) {
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const countries_1 = require("./lib/countries");
exports.countries = [
countries_1.andorra,
countries_1.austria,
countries_1.belgium,
countries_1.bulgaria,
countries_1.croatia,
countries_1.cyprus,
countries_1.czechRepublic,
countries_1.denmark,
countries_1.estonia,
countries_1.europe,
countries_1.finland,
countries_1.france,
countries_1.germany,
countries_1.greece,
countries_1.hungary,
countries_1.ireland,
countries_1.italy,
countries_1.latvia,
countries_1.lithuania,
countries_1.luxembourg,
countries_1.malta,
countries_1.netherlands,
countries_1.norway,
countries_1.poland,
countries_1.portugal,
countries_1.romania,
countries_1.russia,
countries_1.serbia,
countries_1.slovakiaRepublic,
countries_1.slovenia,
countries_1.spain,
countries_1.sweden,
countries_1.switzerland,
countries_1.unitedKingdom
];
var countries_2 = require("./lib/countries");
exports.andorra = countries_2.andorra;
exports.austria = countries_2.austria;
exports.belgium = countries_2.belgium;
exports.bulgaria = countries_2.bulgaria;
exports.croatia = countries_2.croatia;
exports.cyprus = countries_2.cyprus;
exports.czechRepublic = countries_2.czechRepublic;
exports.denmark = countries_2.denmark;
exports.estonia = countries_2.estonia;
exports.europe = countries_2.europe;
exports.finland = countries_2.finland;
exports.france = countries_2.france;
exports.germany = countries_2.germany;
exports.greece = countries_2.greece;
exports.hungary = countries_2.hungary;
exports.ireland = countries_2.ireland;
exports.italy = countries_2.italy;
exports.latvia = countries_2.latvia;
exports.lithuania = countries_2.lithuania;
exports.luxembourg = countries_2.luxembourg;
exports.malta = countries_2.malta;
exports.netherlands = countries_2.netherlands;
exports.norway = countries_2.norway;
exports.poland = countries_2.poland;
exports.portugal = countries_2.portugal;
exports.romania = countries_2.romania;
exports.russia = countries_2.russia;
exports.serbia = countries_2.serbia;
exports.slovakiaRepublic = countries_2.slovakiaRepublic;
exports.slovenia = countries_2.slovenia;
exports.spain = countries_2.spain;
exports.sweden = countries_2.sweden;
exports.switzerland = countries_2.switzerland;
exports.unitedKingdom = countries_2.unitedKingdom;
var jsvat_1 = require("./lib/jsvat");
exports.checkVAT = jsvat_1.checkVAT;
});

0 comments on commit 65e584b

Please sign in to comment.