Skip to content

Commit 65e584b

Browse files
committed
fixes after merge
1 parent 8bef79a commit 65e584b

File tree

2 files changed

+177
-0
lines changed

2 files changed

+177
-0
lines changed

lib/system/index.js

+91
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
System.register(["./lib/countries", "./lib/jsvat"], function (exports_1, context_1) {
2+
"use strict";
3+
var countries_1, countries;
4+
var __moduleName = context_1 && context_1.id;
5+
return {
6+
setters: [
7+
function (countries_1_1) {
8+
countries_1 = countries_1_1;
9+
exports_1({
10+
"andorra": countries_1_1["andorra"],
11+
"austria": countries_1_1["austria"],
12+
"belgium": countries_1_1["belgium"],
13+
"bulgaria": countries_1_1["bulgaria"],
14+
"croatia": countries_1_1["croatia"],
15+
"cyprus": countries_1_1["cyprus"],
16+
"czechRepublic": countries_1_1["czechRepublic"],
17+
"denmark": countries_1_1["denmark"],
18+
"estonia": countries_1_1["estonia"],
19+
"europe": countries_1_1["europe"],
20+
"finland": countries_1_1["finland"],
21+
"france": countries_1_1["france"],
22+
"germany": countries_1_1["germany"],
23+
"greece": countries_1_1["greece"],
24+
"hungary": countries_1_1["hungary"],
25+
"ireland": countries_1_1["ireland"],
26+
"italy": countries_1_1["italy"],
27+
"latvia": countries_1_1["latvia"],
28+
"lithuania": countries_1_1["lithuania"],
29+
"luxembourg": countries_1_1["luxembourg"],
30+
"malta": countries_1_1["malta"],
31+
"netherlands": countries_1_1["netherlands"],
32+
"norway": countries_1_1["norway"],
33+
"poland": countries_1_1["poland"],
34+
"portugal": countries_1_1["portugal"],
35+
"romania": countries_1_1["romania"],
36+
"russia": countries_1_1["russia"],
37+
"serbia": countries_1_1["serbia"],
38+
"slovakiaRepublic": countries_1_1["slovakiaRepublic"],
39+
"slovenia": countries_1_1["slovenia"],
40+
"spain": countries_1_1["spain"],
41+
"sweden": countries_1_1["sweden"],
42+
"switzerland": countries_1_1["switzerland"],
43+
"unitedKingdom": countries_1_1["unitedKingdom"]
44+
});
45+
},
46+
function (jsvat_1_1) {
47+
exports_1({
48+
"checkVAT": jsvat_1_1["checkVAT"]
49+
});
50+
}
51+
],
52+
execute: function () {
53+
exports_1("countries", countries = [
54+
countries_1.andorra,
55+
countries_1.austria,
56+
countries_1.belgium,
57+
countries_1.bulgaria,
58+
countries_1.croatia,
59+
countries_1.cyprus,
60+
countries_1.czechRepublic,
61+
countries_1.denmark,
62+
countries_1.estonia,
63+
countries_1.europe,
64+
countries_1.finland,
65+
countries_1.france,
66+
countries_1.germany,
67+
countries_1.greece,
68+
countries_1.hungary,
69+
countries_1.ireland,
70+
countries_1.italy,
71+
countries_1.latvia,
72+
countries_1.lithuania,
73+
countries_1.luxembourg,
74+
countries_1.malta,
75+
countries_1.netherlands,
76+
countries_1.norway,
77+
countries_1.poland,
78+
countries_1.portugal,
79+
countries_1.romania,
80+
countries_1.russia,
81+
countries_1.serbia,
82+
countries_1.slovakiaRepublic,
83+
countries_1.slovenia,
84+
countries_1.spain,
85+
countries_1.sweden,
86+
countries_1.switzerland,
87+
countries_1.unitedKingdom
88+
]);
89+
}
90+
};
91+
});

lib/umd/index.js

+86
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,86 @@
1+
(function (factory) {
2+
if (typeof module === "object" && typeof module.exports === "object") {
3+
var v = factory(require, exports);
4+
if (v !== undefined) module.exports = v;
5+
}
6+
else if (typeof define === "function" && define.amd) {
7+
define(["require", "exports", "./lib/countries", "./lib/countries", "./lib/jsvat"], factory);
8+
}
9+
})(function (require, exports) {
10+
"use strict";
11+
Object.defineProperty(exports, "__esModule", { value: true });
12+
const countries_1 = require("./lib/countries");
13+
exports.countries = [
14+
countries_1.andorra,
15+
countries_1.austria,
16+
countries_1.belgium,
17+
countries_1.bulgaria,
18+
countries_1.croatia,
19+
countries_1.cyprus,
20+
countries_1.czechRepublic,
21+
countries_1.denmark,
22+
countries_1.estonia,
23+
countries_1.europe,
24+
countries_1.finland,
25+
countries_1.france,
26+
countries_1.germany,
27+
countries_1.greece,
28+
countries_1.hungary,
29+
countries_1.ireland,
30+
countries_1.italy,
31+
countries_1.latvia,
32+
countries_1.lithuania,
33+
countries_1.luxembourg,
34+
countries_1.malta,
35+
countries_1.netherlands,
36+
countries_1.norway,
37+
countries_1.poland,
38+
countries_1.portugal,
39+
countries_1.romania,
40+
countries_1.russia,
41+
countries_1.serbia,
42+
countries_1.slovakiaRepublic,
43+
countries_1.slovenia,
44+
countries_1.spain,
45+
countries_1.sweden,
46+
countries_1.switzerland,
47+
countries_1.unitedKingdom
48+
];
49+
var countries_2 = require("./lib/countries");
50+
exports.andorra = countries_2.andorra;
51+
exports.austria = countries_2.austria;
52+
exports.belgium = countries_2.belgium;
53+
exports.bulgaria = countries_2.bulgaria;
54+
exports.croatia = countries_2.croatia;
55+
exports.cyprus = countries_2.cyprus;
56+
exports.czechRepublic = countries_2.czechRepublic;
57+
exports.denmark = countries_2.denmark;
58+
exports.estonia = countries_2.estonia;
59+
exports.europe = countries_2.europe;
60+
exports.finland = countries_2.finland;
61+
exports.france = countries_2.france;
62+
exports.germany = countries_2.germany;
63+
exports.greece = countries_2.greece;
64+
exports.hungary = countries_2.hungary;
65+
exports.ireland = countries_2.ireland;
66+
exports.italy = countries_2.italy;
67+
exports.latvia = countries_2.latvia;
68+
exports.lithuania = countries_2.lithuania;
69+
exports.luxembourg = countries_2.luxembourg;
70+
exports.malta = countries_2.malta;
71+
exports.netherlands = countries_2.netherlands;
72+
exports.norway = countries_2.norway;
73+
exports.poland = countries_2.poland;
74+
exports.portugal = countries_2.portugal;
75+
exports.romania = countries_2.romania;
76+
exports.russia = countries_2.russia;
77+
exports.serbia = countries_2.serbia;
78+
exports.slovakiaRepublic = countries_2.slovakiaRepublic;
79+
exports.slovenia = countries_2.slovenia;
80+
exports.spain = countries_2.spain;
81+
exports.sweden = countries_2.sweden;
82+
exports.switzerland = countries_2.switzerland;
83+
exports.unitedKingdom = countries_2.unitedKingdom;
84+
var jsvat_1 = require("./lib/jsvat");
85+
exports.checkVAT = jsvat_1.checkVAT;
86+
});

0 commit comments

Comments
 (0)