tldts-experimental 5.7.79 → 5.7.82
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/index.js +40 -40
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/src/packed-hashes.js +29 -29
- package/dist/cjs/src/packed-hashes.js.map +1 -1
- package/dist/cjs/tsconfig.tsbuildinfo +1 -1
- package/dist/es6/index.js +6 -6
- package/dist/es6/index.js.map +1 -1
- package/dist/es6/src/packed-hashes.js +29 -29
- package/dist/es6/src/packed-hashes.js.map +1 -1
- package/dist/es6/tsconfig.bundle.tsbuildinfo +1 -1
- package/package.json +4 -4
|
@@ -77,7 +77,7 @@ function suffixLookup(hostname, options, out) {
|
|
|
77
77
|
const { allowIcannDomains, allowPrivateDomains } = options;
|
|
78
78
|
// Keep track of longest match
|
|
79
79
|
let matchIndex = -1;
|
|
80
|
-
let matchKind = 0 /* NO_MATCH */;
|
|
80
|
+
let matchKind = 0 /* Result.NO_MATCH */;
|
|
81
81
|
let matchLabels = 0; // Keep track of number of labels currently matched
|
|
82
82
|
// Index in the packed array data-structure
|
|
83
83
|
let index = 1;
|
|
@@ -105,22 +105,22 @@ function suffixLookup(hostname, options, out) {
|
|
|
105
105
|
//
|
|
106
106
|
// **WARNING**: the structure of this code follows exactly the structure
|
|
107
107
|
// of the packed data structure as create in ./bin/builders/hashes.js
|
|
108
|
-
let match = 0 /* NO_MATCH */;
|
|
108
|
+
let match = 0 /* Result.NO_MATCH */;
|
|
109
109
|
// ========================================================================
|
|
110
110
|
// Lookup exceptions
|
|
111
111
|
// ========================================================================
|
|
112
112
|
// ICANN
|
|
113
113
|
if (allowIcannDomains === true) {
|
|
114
114
|
match = binSearch(hashes_1.default, hash, index + 1, index + hashes_1.default[index] + 1)
|
|
115
|
-
? 1 /* ICANN_MATCH */ | 4 /* EXCEPTION_MATCH */
|
|
116
|
-
: 0 /* NO_MATCH */;
|
|
115
|
+
? 1 /* Result.ICANN_MATCH */ | 4 /* Result.EXCEPTION_MATCH */
|
|
116
|
+
: 0 /* Result.NO_MATCH */;
|
|
117
117
|
}
|
|
118
118
|
index += hashes_1.default[index] + 1;
|
|
119
119
|
// PRIVATE
|
|
120
|
-
if (allowPrivateDomains === true && match === 0 /* NO_MATCH */) {
|
|
120
|
+
if (allowPrivateDomains === true && match === 0 /* Result.NO_MATCH */) {
|
|
121
121
|
match = binSearch(hashes_1.default, hash, index + 1, index + hashes_1.default[index] + 1)
|
|
122
|
-
? 2 /* PRIVATE_MATCH */ | 4 /* EXCEPTION_MATCH */
|
|
123
|
-
: 0 /* NO_MATCH */;
|
|
122
|
+
? 2 /* Result.PRIVATE_MATCH */ | 4 /* Result.EXCEPTION_MATCH */
|
|
123
|
+
: 0 /* Result.NO_MATCH */;
|
|
124
124
|
}
|
|
125
125
|
index += hashes_1.default[index] + 1;
|
|
126
126
|
// ========================================================================
|
|
@@ -128,20 +128,20 @@ function suffixLookup(hostname, options, out) {
|
|
|
128
128
|
// ========================================================================
|
|
129
129
|
// ICANN
|
|
130
130
|
if (allowIcannDomains === true &&
|
|
131
|
-
match === 0 /* NO_MATCH */ &&
|
|
132
|
-
(matchKind & 4 /* EXCEPTION_MATCH */) === 0) {
|
|
131
|
+
match === 0 /* Result.NO_MATCH */ &&
|
|
132
|
+
(matchKind & 4 /* Result.EXCEPTION_MATCH */) === 0) {
|
|
133
133
|
match = binSearch(hashes_1.default, hash, index + 1, index + hashes_1.default[index] + 1)
|
|
134
|
-
? 16 /* WILDCARD_MATCH */ | 1 /* ICANN_MATCH */
|
|
135
|
-
: 0 /* NO_MATCH */;
|
|
134
|
+
? 16 /* Result.WILDCARD_MATCH */ | 1 /* Result.ICANN_MATCH */
|
|
135
|
+
: 0 /* Result.NO_MATCH */;
|
|
136
136
|
}
|
|
137
137
|
index += hashes_1.default[index] + 1;
|
|
138
138
|
// PRIVATE
|
|
139
139
|
if (allowPrivateDomains === true &&
|
|
140
|
-
match === 0 /* NO_MATCH */ &&
|
|
141
|
-
(matchKind & 4 /* EXCEPTION_MATCH */) === 0) {
|
|
140
|
+
match === 0 /* Result.NO_MATCH */ &&
|
|
141
|
+
(matchKind & 4 /* Result.EXCEPTION_MATCH */) === 0) {
|
|
142
142
|
match = binSearch(hashes_1.default, hash, index + 1, index + hashes_1.default[index] + 1)
|
|
143
|
-
? 16 /* WILDCARD_MATCH */ | 2 /* PRIVATE_MATCH */
|
|
144
|
-
: 0 /* NO_MATCH */;
|
|
143
|
+
? 16 /* Result.WILDCARD_MATCH */ | 2 /* Result.PRIVATE_MATCH */
|
|
144
|
+
: 0 /* Result.NO_MATCH */;
|
|
145
145
|
}
|
|
146
146
|
index += hashes_1.default[index] + 1;
|
|
147
147
|
// ========================================================================
|
|
@@ -149,22 +149,22 @@ function suffixLookup(hostname, options, out) {
|
|
|
149
149
|
// ========================================================================
|
|
150
150
|
// ICANN
|
|
151
151
|
if (allowIcannDomains === true &&
|
|
152
|
-
match === 0 /* NO_MATCH */ &&
|
|
153
|
-
(matchKind & 4 /* EXCEPTION_MATCH */) === 0 &&
|
|
152
|
+
match === 0 /* Result.NO_MATCH */ &&
|
|
153
|
+
(matchKind & 4 /* Result.EXCEPTION_MATCH */) === 0 &&
|
|
154
154
|
matchLabels <= label) {
|
|
155
155
|
match = binSearch(hashes_1.default, hash, index + 1, index + hashes_1.default[index] + 1)
|
|
156
|
-
? 8 /* NORMAL_MATCH */ | 1 /* ICANN_MATCH */
|
|
157
|
-
: 0 /* NO_MATCH */;
|
|
156
|
+
? 8 /* Result.NORMAL_MATCH */ | 1 /* Result.ICANN_MATCH */
|
|
157
|
+
: 0 /* Result.NO_MATCH */;
|
|
158
158
|
}
|
|
159
159
|
index += hashes_1.default[index] + 1;
|
|
160
160
|
// PRIVATE
|
|
161
161
|
if (allowPrivateDomains === true &&
|
|
162
|
-
match === 0 /* NO_MATCH */ &&
|
|
163
|
-
(matchKind & 4 /* EXCEPTION_MATCH */) === 0 &&
|
|
162
|
+
match === 0 /* Result.NO_MATCH */ &&
|
|
163
|
+
(matchKind & 4 /* Result.EXCEPTION_MATCH */) === 0 &&
|
|
164
164
|
matchLabels <= label) {
|
|
165
165
|
match = binSearch(hashes_1.default, hash, index + 1, index + hashes_1.default[index] + 1)
|
|
166
|
-
? 8 /* NORMAL_MATCH */ | 2 /* PRIVATE_MATCH */
|
|
167
|
-
: 0 /* NO_MATCH */;
|
|
166
|
+
? 8 /* Result.NORMAL_MATCH */ | 2 /* Result.PRIVATE_MATCH */
|
|
167
|
+
: 0 /* Result.NO_MATCH */;
|
|
168
168
|
}
|
|
169
169
|
index += hashes_1.default[index] + 1;
|
|
170
170
|
// If we found a match, the longest match that is being tracked for this
|
|
@@ -173,14 +173,14 @@ function suffixLookup(hostname, options, out) {
|
|
|
173
173
|
// as well as the number of labels contained in this suffix (this is
|
|
174
174
|
// important to make sure that we always keep the longest match if there
|
|
175
175
|
// are both a wildcard and a normal rule matching).
|
|
176
|
-
if (match !== 0 /* NO_MATCH */) {
|
|
176
|
+
if (match !== 0 /* Result.NO_MATCH */) {
|
|
177
177
|
matchKind = match;
|
|
178
|
-
matchLabels = label + ((match & 16 /* WILDCARD_MATCH */) !== 0 ? 2 : 1);
|
|
178
|
+
matchLabels = label + ((match & 16 /* Result.WILDCARD_MATCH */) !== 0 ? 2 : 1);
|
|
179
179
|
matchIndex = labelStart;
|
|
180
180
|
}
|
|
181
181
|
}
|
|
182
|
-
out.isIcann = (matchKind & 1 /* ICANN_MATCH */) !== 0;
|
|
183
|
-
out.isPrivate = (matchKind & 2 /* PRIVATE_MATCH */) !== 0;
|
|
182
|
+
out.isIcann = (matchKind & 1 /* Result.ICANN_MATCH */) !== 0;
|
|
183
|
+
out.isPrivate = (matchKind & 2 /* Result.PRIVATE_MATCH */) !== 0;
|
|
184
184
|
// No match found
|
|
185
185
|
if (matchIndex === -1) {
|
|
186
186
|
out.publicSuffix =
|
|
@@ -190,14 +190,14 @@ function suffixLookup(hostname, options, out) {
|
|
|
190
190
|
// If match is an exception, this means that we need to count less label.
|
|
191
191
|
// For example, exception rule !foo.com would yield suffix 'com', so we need
|
|
192
192
|
// to locate the next dot and slice from there.
|
|
193
|
-
if ((matchKind & 4 /* EXCEPTION_MATCH */) !== 0) {
|
|
193
|
+
if ((matchKind & 4 /* Result.EXCEPTION_MATCH */) !== 0) {
|
|
194
194
|
out.publicSuffix = hostname.slice(BUFFER[((matchLabels - 2) << 1) + 1]);
|
|
195
195
|
return;
|
|
196
196
|
}
|
|
197
197
|
// If match is a wildcard, we need to match one more label. If wildcard rule
|
|
198
198
|
// was *.com, we would have stored only 'com' in the packed structure and we
|
|
199
199
|
// need to take one extra label on the left.
|
|
200
|
-
if ((matchKind & 16 /* WILDCARD_MATCH */) !== 0) {
|
|
200
|
+
if ((matchKind & 16 /* Result.WILDCARD_MATCH */) !== 0) {
|
|
201
201
|
out.publicSuffix =
|
|
202
202
|
matchLabels >= numberOfHashes
|
|
203
203
|
? hostname
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"packed-hashes.js","sourceRoot":"","sources":["../../../src/packed-hashes.ts"],"names":[],"mappings":";;AAAA,2CAIoB;AACpB,0CAAmC;AAEnC;;;GAGG;AACH,SAAS,SAAS,CAChB,GAAgB,EAChB,GAAW,EACX,KAAa,EACb,GAAW;IAEX,IAAI,KAAK,IAAI,GAAG,EAAE;QAChB,OAAO,KAAK,CAAC;KACd;IAED,IAAI,GAAG,GAAG,KAAK,CAAC;IAChB,IAAI,IAAI,GAAG,GAAG,GAAG,CAAC,CAAC;IAEnB,OAAO,GAAG,IAAI,IAAI,EAAE;QAClB,MAAM,GAAG,GAAG,CAAC,GAAG,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC;QAC/B,MAAM,MAAM,GAAG,GAAG,CAAC,GAAG,CAAC,CAAC;QACxB,IAAI,MAAM,GAAG,GAAG,EAAE;YAChB,GAAG,GAAG,GAAG,GAAG,CAAC,CAAC;SACf;aAAM,IAAI,MAAM,GAAG,GAAG,EAAE;YACvB,IAAI,GAAG,GAAG,GAAG,CAAC,CAAC;SAChB;aAAM;YACL,OAAO,IAAI,CAAC;SACb;KACF;IAED,OAAO,KAAK,CAAC;AACf,CAAC;AAED,2EAA2E;AAC3E,0EAA0E;AAC1E,4CAA4C;AAC5C,MAAM,MAAM,GAAG,IAAI,WAAW,CAAC,EAAE,CAAC,CAAC;AAEnC;;;;;;;;GAQG;AACH,SAAS,0BAA0B,CACjC,QAAgB,EAChB,qBAA6B;IAE7B,IAAI,IAAI,GAAG,IAAI,CAAC;IAChB,IAAI,KAAK,GAAG,CAAC,CAAC;IAEd,yCAAyC;IACzC,KAAK,IAAI,CAAC,GAAG,QAAQ,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC,IAAI,CAAC,EAAE,CAAC,IAAI,CAAC,EAAE;QAChD,MAAM,IAAI,GAAG,QAAQ,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC;QACpC,gBAAgB;QAChB,IAAI,IAAI,KAAK,EAAE,CAAC,SAAS,EAAE;YACzB,MAAM,CAAC,KAAK,IAAI,CAAC,CAAC,GAAG,IAAI,KAAK,CAAC,CAAC;YAChC,MAAM,CAAC,CAAC,KAAK,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;YACjC,KAAK,IAAI,CAAC,CAAC;YAEX,IAAI,KAAK,KAAK,qBAAqB,EAAE;gBACnC,OAAO,KAAK,CAAC;aACd;SACF;QAED,cAAc;QACd,IAAI,GAAG,CAAC,IAAI,GAAG,EAAE,CAAC,GAAG,IAAI,CAAC;KAC3B;IAED,oCAAoC;IACpC,MAAM,CAAC,KAAK,IAAI,CAAC,CAAC,GAAG,IAAI,KAAK,CAAC,CAAC;IAChC,MAAM,CAAC,CAAC,KAAK,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC;IAC7B,KAAK,IAAI,CAAC,CAAC;IAEX,OAAO,KAAK,CAAC;AACf,CAAC;AAWD;;;;;GAKG;AACH,SAAwB,YAAY,CAClC,QAAgB,EAChB,OAA6B,EAC7B,GAAkB;IAElB,IAAI,IAAA,2BAAc,EAAC,QAAQ,EAAE,OAAO,EAAE,GAAG,CAAC,KAAK,IAAI,EAAE;QACnD,OAAO;KACR;IAED,MAAM,EAAE,iBAAiB,EAAE,mBAAmB,EAAE,GAAG,OAAO,CAAC;IAE3D,8BAA8B;IAC9B,IAAI,UAAU,GAAG,CAAC,CAAC,CAAC;IACpB,IAAI,SAAS,
|
|
1
|
+
{"version":3,"file":"packed-hashes.js","sourceRoot":"","sources":["../../../src/packed-hashes.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"program":{"fileNames":["../../../../node_modules/typescript/lib/lib.es5.d.ts","../../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../../node_modules/typescript/lib/lib.dom.d.ts","../../../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../../../node_modules/typescript/lib/lib.scripthost.d.ts","../../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2017.full.d.ts","../../../tldts-core/dist/types/src/lookup/interface.d.ts","../../../tldts-core/dist/types/src/options.d.ts","../../../tldts-core/dist/types/src/factory.d.ts","../../../tldts-core/dist/types/src/lookup/fast-path.d.ts","../../../tldts-core/dist/types/index.d.ts","../../src/data/hashes.ts","../../src/packed-hashes.ts","../../index.ts","../../../../node_modules/@types/chai/index.d.ts","../../../../node_modules/@types/command-line-args/index.d.ts","../../../../node_modules/@types/command-line-usage/index.d.ts","../../../../node_modules/@types/estree/index.d.ts","../../../../node_modules/@types/minimatch/index.d.ts","../../../../node_modules/@types/minimist/index.d.ts","../../../../node_modules/@types/mocha/index.d.ts","../../../../node_modules/@types/node/assert.d.ts","../../../../node_modules/@types/node/assert/strict.d.ts","../../../../node_modules/@types/node/globals.d.ts","../../../../node_modules/@types/node/async_hooks.d.ts","../../../../node_modules/@types/node/buffer.d.ts","../../../../node_modules/@types/node/child_process.d.ts","../../../../node_modules/@types/node/cluster.d.ts","../../../../node_modules/@types/node/console.d.ts","../../../../node_modules/@types/node/constants.d.ts","../../../../node_modules/@types/node/crypto.d.ts","../../../../node_modules/@types/node/dgram.d.ts","../../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../../node_modules/@types/node/dns.d.ts","../../../../node_modules/@types/node/dns/promises.d.ts","../../../../node_modules/@types/node/domain.d.ts","../../../../node_modules/@types/node/events.d.ts","../../../../node_modules/@types/node/fs.d.ts","../../../../node_modules/@types/node/fs/promises.d.ts","../../../../node_modules/@types/node/http.d.ts","../../../../node_modules/@types/node/http2.d.ts","../../../../node_modules/@types/node/https.d.ts","../../../../node_modules/@types/node/inspector.d.ts","../../../../node_modules/@types/node/module.d.ts","../../../../node_modules/@types/node/net.d.ts","../../../../node_modules/@types/node/os.d.ts","../../../../node_modules/@types/node/path.d.ts","../../../../node_modules/@types/node/perf_hooks.d.ts","../../../../node_modules/@types/node/process.d.ts","../../../../node_modules/@types/node/punycode.d.ts","../../../../node_modules/@types/node/querystring.d.ts","../../../../node_modules/@types/node/readline.d.ts","../../../../node_modules/@types/node/repl.d.ts","../../../../node_modules/@types/node/stream.d.ts","../../../../node_modules/@types/node/stream/promises.d.ts","../../../../node_modules/@types/node/stream/consumers.d.ts","../../../../node_modules/@types/node/stream/web.d.ts","../../../../node_modules/@types/node/string_decoder.d.ts","../../../../node_modules/@types/node/timers.d.ts","../../../../node_modules/@types/node/timers/promises.d.ts","../../../../node_modules/@types/node/tls.d.ts","../../../../node_modules/@types/node/trace_events.d.ts","../../../../node_modules/@types/node/tty.d.ts","../../../../node_modules/@types/node/url.d.ts","../../../../node_modules/@types/node/util.d.ts","../../../../node_modules/@types/node/v8.d.ts","../../../../node_modules/@types/node/vm.d.ts","../../../../node_modules/@types/node/wasi.d.ts","../../../../node_modules/@types/node/worker_threads.d.ts","../../../../node_modules/@types/node/zlib.d.ts","../../../../node_modules/@types/node/globals.global.d.ts","../../../../node_modules/@types/node/index.d.ts","../../../../node_modules/@types/normalize-package-data/index.d.ts","../../../../node_modules/@types/parse-json/index.d.ts","../../../../node_modules/@types/resolve/index.d.ts"],"fileInfos":[{"version":"3ac1b83264055b28c0165688fda6dfcc39001e9e7828f649299101c23ad0a0c3","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940",{"version":"72704b10d97777e15f1a581b73f88273037ef752d2e50b72287bd0a90af64fe6","affectsGlobalScope":true},{"version":"dbb73d4d99be496175cb432c74c2615f78c76f4272f1d83cba11ee0ed6dbddf0","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"5075b36ab861c8c0c45377cb8c96270d7c65f0eeaf105d53fac6850da61f1027","affectsGlobalScope":true},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},"d2f31f19e1ba6ed59be9259d660a239d9a3fcbbc8e038c6b2009bde34b175fed","863cbb90fdbdd1d4d46722580a9648a44732bbbca2ca36655f0951a872154ccc","4ed6832518a6e057aca6c6861a7d86f432064a49b1cb6c960e472bcc2404e82a","45c1b68819be5f90018e54b257c0fff392fa02224db1622d9eecd31649ffade7","899c62c52e9f287a86c1c4dd1281495fd80c652ccc578d93b976fa6c1efa1941","ef35ce8b7e5f2a3b1fea423bec4d4549ca26303572686bde88bd93f820f582f9","9fe9da1ba964d877052a9bc8922ee1f6e779b835fcc46c4412313b3df60591e2","8eabeb67083888782841970b35bb9c50840f92da1cee9b1015bab907cc924033","4c60326ce4af26b97277b6dd3628efcfba9c9016008086d176181274c3ffc3e6",{"version":"3a15910b7f45dfc393f010ee8f913580b08d65752800fc48147ea13445acd5f7","affectsGlobalScope":true},"e2790204f9394425bf7d8e93a919887823d03dc2830d31d09c8f6af5562634dd","65fa9dd7434e469671c4fb384cc9c610ad8ffc572351adec3e3d46f36a68f358","89ccbe04e737ce613f5f04990271cfa84901446350b8551b0555ddf19319723b","95c22bc19835e28e2e524a4bb8898eb5f2107b640d7279a6d3aade261916bbf2","e437d83044ba17246a861aa9691aa14223ff4a9d6f338ab1269c41c758586a88",{"version":"3f6d6465811321abc30a1e5f667feed63e5b3917b3d6c8d6645daf96c75f97ba","affectsGlobalScope":true},"0cba3a5d7b81356222594442753cf90dd2892e5ccfe1d262aaca6896ba6c1380","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"77f0b5c6a193a699c9f7d7fb0578e64e562d271afa740783665d2a827104a873","affectsGlobalScope":true},"e5979905796fe2740d85fbaf4f11f42b7ee1851421afe750823220813421b1af",{"version":"fcdcb42da18dd98dc286b1876dd425791772036012ae61263c011a76b13a190f","affectsGlobalScope":true},"1dab5ab6bcf11de47ab9db295df8c4f1d92ffa750e8f095e88c71ce4c3299628","f71f46ccd5a90566f0a37b25b23bc4684381ab2180bdf6733f4e6624474e1894",{"version":"54e65985a3ee3cec182e6a555e20974ea936fc8b8d1738c14e8ed8a42bd921d4","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","5b30f550565fd0a7524282c81c27fe8534099e2cd26170ca80852308f07ae68d","34e5de87d983bc6aefef8b17658556e3157003e8d9555d3cb098c6bef0b5fbc8","787e96225b2a4c37625e3bdaa7b3e3b1fa0a24f067a494ac0e6aaa23be4752e4","f27371653aded82b2b160f7a7033fb4a5b1534b6f6081ef7be1468f0f15327d3","c762cd6754b13a461c54b59d0ae0ab7aeef3c292c6cf889873f786ee4d8e75c9","f4ea7d5df644785bd9fbf419930cbaec118f0d8b4160037d2339b8e23c059e79",{"version":"bfea28e6162ed21a0aeed181b623dcf250aa79abf49e24a6b7e012655af36d81","affectsGlobalScope":true},"b8aca9d0c81abb02bec9b7621983ae65bde71da6727580070602bd2500a9ce2a","ae97e20f2e10dbeec193d6a2f9cd9a367a1e293e7d6b33b68bacea166afd7792","10d4796a130577d57003a77b95d8723530bbec84718e364aa2129fa8ffba0378","063f53ff674228c190efa19dd9448bcbd540acdbb48a928f4cf3a1b9f9478e43","bf73c576885408d4a176f44a9035d798827cc5020d58284cb18d7573430d9022","7ae078ca42a670445ae0c6a97c029cb83d143d62abd1730efb33f68f0b2c0e82",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"287b21dc1d1b9701c92e15e7dd673dfe6044b15812956377adffb6f08825b1bc","12eea70b5e11e924bb0543aea5eadc16ced318aa26001b453b0d561c2fd0bd1e","08777cd9318d294646b121838574e1dd7acbb22c21a03df84e1f2c87b1ad47f2","08a90bcdc717df3d50a2ce178d966a8c353fd23e5c392fd3594a6e39d9bb6304",{"version":"4cd4cff679c9b3d9239fd7bf70293ca4594583767526916af8e5d5a47d0219c7","affectsGlobalScope":true},"2a12d2da5ac4c4979401a3f6eaafa874747a37c365e4bc18aa2b171ae134d21b","002b837927b53f3714308ecd96f72ee8a053b8aeb28213d8ec6de23ed1608b66","1dc9c847473bb47279e398b22c740c83ea37a5c88bf66629666e3cf4c5b9f99c","a9e4a5a24bf2c44de4c98274975a1a705a0abbaad04df3557c2d3cd8b1727949","00fa7ce8bc8acc560dc341bbfdf37840a8c59e6a67c9bfa3fa5f36254df35db2","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","5f0ed51db151c2cdc4fa3bb0f44ce6066912ad001b607a34e65a96c52eb76248",{"version":"3345c276cab0e76dda86c0fb79104ff915a4580ba0f3e440870e183b1baec476","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","103d70bfbeb3cd3a3f26d1705bf986322d8738c2c143f38ebb743b1e228d7444","f52fbf64c7e480271a9096763c4882d356b05cab05bf56a64e68a95313cd2ce2","59bdb65f28d7ce52ccfc906e9aaf422f8b8534b2d21c32a27d7819be5ad81df7",{"version":"3a2da34079a2567161c1359316a32e712404b56566c45332ac9dcee015ecce9f","affectsGlobalScope":true},"28a2e7383fd898c386ffdcacedf0ec0845e5d1a86b5a43f25b86bc315f556b79","3aff9c8c36192e46a84afe7b926136d520487155154ab9ba982a8b544ea8fc95","a880cf8d85af2e4189c709b0fea613741649c0e40fffb4360ec70762563d5de0","85bbf436a15bbeda4db888be3062d47f99c66fd05d7c50f0f6473a9151b6a070","9f9c49c95ecd25e0cb2587751925976cf64fd184714cb11e213749c80cf0f927","f0c75c08a71f9212c93a719a25fb0320d53f2e50ca89a812640e08f8ad8c408c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"9cafe917bf667f1027b2bb62e2de454ecd2119c80873ad76fc41d941089753b8","c9ad058b2cc9ce6dc2ed92960d6d009e8c04bef46d3f5312283debca6869f613","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","8a19491eba2108d5c333c249699f40aff05ad312c04a17504573b27d91f0aede"],"options":{"composite":true,"declaration":true,"declarationDir":"../types","module":1,"noFallthroughCasesInSwitch":true,"noImplicitReturns":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","sourceMap":true,"strict":true,"target":4},"fileIdsList":[[102],[59,102],[62,102],[63,68,102],[64,74,75,82,91,101,102],[64,65,74,82,102],[66,102],[67,68,75,83,102],[68,91,98,102],[69,71,74,82,102],[70,102],[71,72,102],[73,74,102],[74,102],[74,75,76,91,101,102],[74,75,76,91,102],[102,106],[77,82,91,101,102],[74,75,77,78,82,91,98,101,102],[77,79,91,98,101,102],[59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108],[74,80,102],[81,101,102],[71,74,82,91,102],[83,102],[84,102],[62,85,102],[86,100,102,106],[87,102],[88,102],[74,89,102],[89,90,102,104],[74,91,92,93,102],[91,93,102],[91,92,102],[94,102],[95,102],[74,96,97,102],[96,97,102],[68,82,91,98,102],[99,102],[82,100,102],[63,77,88,101,102],[68,102],[91,102,103],[102,104],[102,105],[63,68,74,76,85,91,101,102,104,106],[91,102,107],[102,109],[44,45,46,47,102],[44,45,102],[44,102],[48,50,102],[48,49,102]],"referencedMap":[[52,1],[53,1],[54,1],[55,1],[56,1],[57,1],[58,1],[59,2],[60,2],[62,3],[63,4],[64,5],[65,6],[66,7],[67,8],[68,9],[69,10],[70,11],[71,12],[72,12],[73,13],[74,14],[75,15],[76,16],[61,17],[108,1],[77,18],[78,19],[79,20],[109,21],[80,22],[81,23],[82,24],[83,25],[84,26],[85,27],[86,28],[87,29],[88,30],[89,31],[90,32],[91,33],[93,34],[92,35],[94,36],[95,37],[96,38],[97,39],[98,40],[99,41],[100,42],[101,43],[102,44],[103,45],[104,46],[105,47],[106,48],[107,49],[110,1],[111,1],[112,50],[8,1],[9,1],[13,1],[12,1],[2,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[3,1],[4,1],[43,1],[25,1],[22,1],[23,1],[24,1],[26,1],[27,1],[28,1],[5,1],[29,1],[30,1],[31,1],[32,1],[6,1],[33,1],[34,1],[35,1],[36,1],[7,1],[41,1],[37,1],[38,1],[39,1],[40,1],[1,1],[42,1],[11,1],[10,1],[48,51],[46,52],[47,53],[44,1],[45,1],[51,54],[49,1],[50,55]],"exportedModulesMap":[[52,1],[53,1],[54,1],[55,1],[56,1],[57,1],[58,1],[59,2],[60,2],[62,3],[63,4],[64,5],[65,6],[66,7],[67,8],[68,9],[69,10],[70,11],[71,12],[72,12],[73,13],[74,14],[75,15],[76,16],[61,17],[108,1],[77,18],[78,19],[79,20],[109,21],[80,22],[81,23],[82,24],[83,25],[84,26],[85,27],[86,28],[87,29],[88,30],[89,31],[90,32],[91,33],[93,34],[92,35],[94,36],[95,37],[96,38],[97,39],[98,40],[99,41],[100,42],[101,43],[102,44],[103,45],[104,46],[105,47],[106,48],[107,49],[110,1],[111,1],[112,50],[8,1],[9,1],[13,1],[12,1],[2,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[3,1],[4,1],[43,1],[25,1],[22,1],[23,1],[24,1],[26,1],[27,1],[28,1],[5,1],[29,1],[30,1],[31,1],[32,1],[6,1],[33,1],[34,1],[35,1],[36,1],[7,1],[41,1],[37,1],[38,1],[39,1],[40,1],[1,1],[42,1],[11,1],[10,1],[48,51],[46,52],[47,53],[44,1],[45,1],[51,54],[49,1],[50,55]],"semanticDiagnosticsPerFile":[52,53,54,55,56,57,58,59,60,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,61,108,77,78,79,109,80,81,82,83,84,85,86,87,88,89,90,91,93,92,94,95,96,97,98,99,100,101,102,103,104,105,106,107,110,111,112,8,9,13,12,2,14,15,16,17,18,19,20,21,3,4,43,25,22,23,24,26,27,28,5,29,30,31,32,6,33,34,35,36,7,41,37,38,39,40,1,42,11,10,48,46,47,44,45,51,49,50]},"version":"4.6.4"}
|
|
1
|
+
{"program":{"fileNames":["../../../../node_modules/typescript/lib/lib.es5.d.ts","../../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../../node_modules/typescript/lib/lib.dom.d.ts","../../../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../../../../node_modules/typescript/lib/lib.scripthost.d.ts","../../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2017.full.d.ts","../../../tldts-core/dist/types/src/lookup/interface.d.ts","../../../tldts-core/dist/types/src/options.d.ts","../../../tldts-core/dist/types/src/factory.d.ts","../../../tldts-core/dist/types/src/lookup/fast-path.d.ts","../../../tldts-core/dist/types/index.d.ts","../../src/data/hashes.ts","../../src/packed-hashes.ts","../../index.ts","../../../../node_modules/@types/chai/index.d.ts","../../../../node_modules/@types/command-line-args/index.d.ts","../../../../node_modules/@types/command-line-usage/index.d.ts","../../../../node_modules/@types/estree/index.d.ts","../../../../node_modules/@types/minimatch/index.d.ts","../../../../node_modules/@types/minimist/index.d.ts","../../../../node_modules/@types/mocha/index.d.ts","../../../../node_modules/@types/node/assert.d.ts","../../../../node_modules/@types/node/assert/strict.d.ts","../../../../node_modules/@types/node/globals.d.ts","../../../../node_modules/@types/node/async_hooks.d.ts","../../../../node_modules/@types/node/buffer.d.ts","../../../../node_modules/@types/node/child_process.d.ts","../../../../node_modules/@types/node/cluster.d.ts","../../../../node_modules/@types/node/console.d.ts","../../../../node_modules/@types/node/constants.d.ts","../../../../node_modules/@types/node/crypto.d.ts","../../../../node_modules/@types/node/dgram.d.ts","../../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../../node_modules/@types/node/dns.d.ts","../../../../node_modules/@types/node/dns/promises.d.ts","../../../../node_modules/@types/node/domain.d.ts","../../../../node_modules/@types/node/events.d.ts","../../../../node_modules/@types/node/fs.d.ts","../../../../node_modules/@types/node/fs/promises.d.ts","../../../../node_modules/@types/node/http.d.ts","../../../../node_modules/@types/node/http2.d.ts","../../../../node_modules/@types/node/https.d.ts","../../../../node_modules/@types/node/inspector.d.ts","../../../../node_modules/@types/node/module.d.ts","../../../../node_modules/@types/node/net.d.ts","../../../../node_modules/@types/node/os.d.ts","../../../../node_modules/@types/node/path.d.ts","../../../../node_modules/@types/node/perf_hooks.d.ts","../../../../node_modules/@types/node/process.d.ts","../../../../node_modules/@types/node/punycode.d.ts","../../../../node_modules/@types/node/querystring.d.ts","../../../../node_modules/@types/node/readline.d.ts","../../../../node_modules/@types/node/repl.d.ts","../../../../node_modules/@types/node/stream.d.ts","../../../../node_modules/@types/node/stream/promises.d.ts","../../../../node_modules/@types/node/stream/consumers.d.ts","../../../../node_modules/@types/node/stream/web.d.ts","../../../../node_modules/@types/node/string_decoder.d.ts","../../../../node_modules/@types/node/timers.d.ts","../../../../node_modules/@types/node/timers/promises.d.ts","../../../../node_modules/@types/node/tls.d.ts","../../../../node_modules/@types/node/trace_events.d.ts","../../../../node_modules/@types/node/tty.d.ts","../../../../node_modules/@types/node/url.d.ts","../../../../node_modules/@types/node/util.d.ts","../../../../node_modules/@types/node/v8.d.ts","../../../../node_modules/@types/node/vm.d.ts","../../../../node_modules/@types/node/wasi.d.ts","../../../../node_modules/@types/node/worker_threads.d.ts","../../../../node_modules/@types/node/zlib.d.ts","../../../../node_modules/@types/node/globals.global.d.ts","../../../../node_modules/@types/node/index.d.ts","../../../../node_modules/@types/normalize-package-data/index.d.ts","../../../../node_modules/@types/parse-json/index.d.ts","../../../../node_modules/@types/resolve/index.d.ts"],"fileInfos":[{"version":"f5c28122bee592cfaf5c72ed7bcc47f453b79778ffa6e301f45d21a0970719d4","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"3f149f903dd20dfeb7c80e228b659f0e436532de772469980dbd00702cc05cc1","affectsGlobalScope":true},{"version":"1272277fe7daa738e555eb6cc45ded42cc2d0f76c07294142283145d49e96186","affectsGlobalScope":true},{"version":"7fac8cb5fc820bc2a59ae11ef1c5b38d3832c6d0dfaec5acdb5569137d09a481","affectsGlobalScope":true},{"version":"097a57355ded99c68e6df1b738990448e0bf170e606707df5a7c0481ff2427cd","affectsGlobalScope":true},{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"181f1784c6c10b751631b24ce60c7f78b20665db4550b335be179217bacc0d5f","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"cd483c056da900716879771893a3c9772b66c3c88f8943b4205aec738a94b1d0","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"c37f8a49593a0030eecb51bbfa270e709bec9d79a6cc3bb851ef348d4e6b26f8","affectsGlobalScope":true},"d2f31f19e1ba6ed59be9259d660a239d9a3fcbbc8e038c6b2009bde34b175fed","863cbb90fdbdd1d4d46722580a9648a44732bbbca2ca36655f0951a872154ccc","4ed6832518a6e057aca6c6861a7d86f432064a49b1cb6c960e472bcc2404e82a","45c1b68819be5f90018e54b257c0fff392fa02224db1622d9eecd31649ffade7","899c62c52e9f287a86c1c4dd1281495fd80c652ccc578d93b976fa6c1efa1941","ef35ce8b7e5f2a3b1fea423bec4d4549ca26303572686bde88bd93f820f582f9",{"version":"9fe9da1ba964d877052a9bc8922ee1f6e779b835fcc46c4412313b3df60591e2","signature":"564effd504508d74009e55a851f3a9bd48ee120de9ad1303bb783cf258b1d166"},{"version":"8eabeb67083888782841970b35bb9c50840f92da1cee9b1015bab907cc924033","signature":"7be3d241db8e8a25a527ccf6c2dd576d8380b6e03327cede059e9e5ce5e8843d"},{"version":"4c60326ce4af26b97277b6dd3628efcfba9c9016008086d176181274c3ffc3e6","signature":"5de310f85a2c8f027298730a918cdd1806092870d86e082720cbc8c23fb5bad3"},{"version":"3a15910b7f45dfc393f010ee8f913580b08d65752800fc48147ea13445acd5f7","affectsGlobalScope":true},"e2790204f9394425bf7d8e93a919887823d03dc2830d31d09c8f6af5562634dd","65fa9dd7434e469671c4fb384cc9c610ad8ffc572351adec3e3d46f36a68f358","89ccbe04e737ce613f5f04990271cfa84901446350b8551b0555ddf19319723b","95c22bc19835e28e2e524a4bb8898eb5f2107b640d7279a6d3aade261916bbf2","e437d83044ba17246a861aa9691aa14223ff4a9d6f338ab1269c41c758586a88",{"version":"3f6d6465811321abc30a1e5f667feed63e5b3917b3d6c8d6645daf96c75f97ba","affectsGlobalScope":true},"0cba3a5d7b81356222594442753cf90dd2892e5ccfe1d262aaca6896ba6c1380","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"77f0b5c6a193a699c9f7d7fb0578e64e562d271afa740783665d2a827104a873","affectsGlobalScope":true},"e5979905796fe2740d85fbaf4f11f42b7ee1851421afe750823220813421b1af",{"version":"fcdcb42da18dd98dc286b1876dd425791772036012ae61263c011a76b13a190f","affectsGlobalScope":true},"1dab5ab6bcf11de47ab9db295df8c4f1d92ffa750e8f095e88c71ce4c3299628","f71f46ccd5a90566f0a37b25b23bc4684381ab2180bdf6733f4e6624474e1894",{"version":"54e65985a3ee3cec182e6a555e20974ea936fc8b8d1738c14e8ed8a42bd921d4","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","5b30f550565fd0a7524282c81c27fe8534099e2cd26170ca80852308f07ae68d","34e5de87d983bc6aefef8b17658556e3157003e8d9555d3cb098c6bef0b5fbc8","d97cd8a4a42f557fc62271369ed0461c8e50d47b7f9c8ad0b5462f53306f6060","f27371653aded82b2b160f7a7033fb4a5b1534b6f6081ef7be1468f0f15327d3","c762cd6754b13a461c54b59d0ae0ab7aeef3c292c6cf889873f786ee4d8e75c9","f4ea7d5df644785bd9fbf419930cbaec118f0d8b4160037d2339b8e23c059e79",{"version":"bfea28e6162ed21a0aeed181b623dcf250aa79abf49e24a6b7e012655af36d81","affectsGlobalScope":true},"58df92fa3b18e84865bb0d2fe4b9d2d5bcb9952d4548c871f10ef02702b386f8","52f38aecbb24bebde0b7a0203a686902fc6be930bd0cdb80f482441e4f56fd7d","10d4796a130577d57003a77b95d8723530bbec84718e364aa2129fa8ffba0378","063f53ff674228c190efa19dd9448bcbd540acdbb48a928f4cf3a1b9f9478e43","bf73c576885408d4a176f44a9035d798827cc5020d58284cb18d7573430d9022","7ae078ca42a670445ae0c6a97c029cb83d143d62abd1730efb33f68f0b2c0e82",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"963fe86b2ebd07a34b92b52c6532ab45ec5ccda218a6c477de354fcad2aae0cb","12eea70b5e11e924bb0543aea5eadc16ced318aa26001b453b0d561c2fd0bd1e","08777cd9318d294646b121838574e1dd7acbb22c21a03df84e1f2c87b1ad47f2","08a90bcdc717df3d50a2ce178d966a8c353fd23e5c392fd3594a6e39d9bb6304",{"version":"76c1c3258edbc6fef9c2020c75d64cc954a53d67f5707e0ba5dd13b6b206059a","affectsGlobalScope":true},"2a12d2da5ac4c4979401a3f6eaafa874747a37c365e4bc18aa2b171ae134d21b","002b837927b53f3714308ecd96f72ee8a053b8aeb28213d8ec6de23ed1608b66","1dc9c847473bb47279e398b22c740c83ea37a5c88bf66629666e3cf4c5b9f99c","a9e4a5a24bf2c44de4c98274975a1a705a0abbaad04df3557c2d3cd8b1727949","821dcb2b571bf698841d8ec25fde9d5f615ef3958957227962602f9dbfa8d800","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","5f0ed51db151c2cdc4fa3bb0f44ce6066912ad001b607a34e65a96c52eb76248",{"version":"f234fa210fdce190f851211bccf105301f62736fe9d536aed1abc1639967fdec","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","940e295124659ab07409ad448778c477e6861e89ee4f71e49de8a840965a41ea","f52fbf64c7e480271a9096763c4882d356b05cab05bf56a64e68a95313cd2ce2","59bdb65f28d7ce52ccfc906e9aaf422f8b8534b2d21c32a27d7819be5ad81df7",{"version":"3a2da34079a2567161c1359316a32e712404b56566c45332ac9dcee015ecce9f","affectsGlobalScope":true},"28a2e7383fd898c386ffdcacedf0ec0845e5d1a86b5a43f25b86bc315f556b79","3aff9c8c36192e46a84afe7b926136d520487155154ab9ba982a8b544ea8fc95","a880cf8d85af2e4189c709b0fea613741649c0e40fffb4360ec70762563d5de0","85bbf436a15bbeda4db888be3062d47f99c66fd05d7c50f0f6473a9151b6a070","9f9c49c95ecd25e0cb2587751925976cf64fd184714cb11e213749c80cf0f927","f0c75c08a71f9212c93a719a25fb0320d53f2e50ca89a812640e08f8ad8c408c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"aee3379fb20741a337a779530cc3e608aba5f34776511033d1d2db7ca45c4193","c9ad058b2cc9ce6dc2ed92960d6d009e8c04bef46d3f5312283debca6869f613","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","8a19491eba2108d5c333c249699f40aff05ad312c04a17504573b27d91f0aede"],"options":{"composite":true,"declaration":true,"declarationDir":"../types","module":1,"noFallthroughCasesInSwitch":true,"noImplicitReturns":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./","sourceMap":true,"strict":true,"target":4},"fileIdsList":[[104],[61,104],[64,104],[65,70,104],[66,76,77,84,93,103,104],[66,67,76,84,104],[68,104],[69,70,77,85,104],[70,93,100,104],[71,73,76,84,104],[72,104],[73,74,104],[75,76,104],[76,104],[76,77,78,93,103,104],[76,77,78,93,96,104],[104,108],[79,84,93,103,104],[76,77,79,80,84,93,100,103,104],[79,81,93,100,103,104],[61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110],[76,82,104],[83,103,104],[73,76,84,93,104],[85,104],[86,104],[64,87,104],[88,102,104,108],[89,104],[90,104],[76,91,104],[91,92,104,106],[76,93,94,95,104],[93,95,104],[93,94,104],[96,104],[97,104],[76,98,99,104],[98,99,104],[70,84,93,100,104],[101,104],[84,102,104],[65,79,90,103,104],[70,104],[93,104,105],[104,106],[104,107],[65,70,76,78,87,93,103,104,106,108],[93,104,109],[104,111],[46,47,48,49,104],[46,47,104],[46,104],[50,52,104],[50,51,104],[50]],"referencedMap":[[54,1],[55,1],[56,1],[57,1],[58,1],[59,1],[60,1],[61,2],[62,2],[64,3],[65,4],[66,5],[67,6],[68,7],[69,8],[70,9],[71,10],[72,11],[73,12],[74,12],[75,13],[76,14],[77,15],[78,16],[63,17],[110,1],[79,18],[80,19],[81,20],[111,21],[82,22],[83,23],[84,24],[85,25],[86,26],[87,27],[88,28],[89,29],[90,30],[91,31],[92,32],[93,33],[95,34],[94,35],[96,36],[97,37],[98,38],[99,39],[100,40],[101,41],[102,42],[103,43],[104,44],[105,45],[106,46],[107,47],[108,48],[109,49],[112,1],[113,1],[114,50],[8,1],[9,1],[13,1],[12,1],[2,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[3,1],[4,1],[45,1],[25,1],[22,1],[23,1],[24,1],[26,1],[27,1],[28,1],[5,1],[29,1],[30,1],[31,1],[32,1],[6,1],[33,1],[34,1],[35,1],[36,1],[7,1],[37,1],[42,1],[43,1],[38,1],[39,1],[40,1],[41,1],[1,1],[44,1],[11,1],[10,1],[50,51],[48,52],[49,53],[46,1],[47,1],[53,54],[51,1],[52,55]],"exportedModulesMap":[[54,1],[55,1],[56,1],[57,1],[58,1],[59,1],[60,1],[61,2],[62,2],[64,3],[65,4],[66,5],[67,6],[68,7],[69,8],[70,9],[71,10],[72,11],[73,12],[74,12],[75,13],[76,14],[77,15],[78,16],[63,17],[110,1],[79,18],[80,19],[81,20],[111,21],[82,22],[83,23],[84,24],[85,25],[86,26],[87,27],[88,28],[89,29],[90,30],[91,31],[92,32],[93,33],[95,34],[94,35],[96,36],[97,37],[98,38],[99,39],[100,40],[101,41],[102,42],[103,43],[104,44],[105,45],[106,46],[107,47],[108,48],[109,49],[112,1],[113,1],[114,50],[8,1],[9,1],[13,1],[12,1],[2,1],[14,1],[15,1],[16,1],[17,1],[18,1],[19,1],[20,1],[21,1],[3,1],[4,1],[45,1],[25,1],[22,1],[23,1],[24,1],[26,1],[27,1],[28,1],[5,1],[29,1],[30,1],[31,1],[32,1],[6,1],[33,1],[34,1],[35,1],[36,1],[7,1],[37,1],[42,1],[43,1],[38,1],[39,1],[40,1],[41,1],[1,1],[44,1],[11,1],[10,1],[50,51],[48,52],[49,53],[46,1],[47,1],[53,56],[52,56]],"semanticDiagnosticsPerFile":[54,55,56,57,58,59,60,61,62,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,63,110,79,80,81,111,82,83,84,85,86,87,88,89,90,91,92,93,95,94,96,97,98,99,100,101,102,103,104,105,106,107,108,109,112,113,114,8,9,13,12,2,14,15,16,17,18,19,20,21,3,4,45,25,22,23,24,26,27,28,5,29,30,31,32,6,33,34,35,36,7,37,42,43,38,39,40,41,1,44,11,10,50,48,49,46,47,53,51,52]},"version":"4.7.3"}
|
package/dist/es6/index.js
CHANGED
|
@@ -5,29 +5,29 @@ import suffixLookup from './src/packed-hashes';
|
|
|
5
5
|
// this un-necessary allocation, we use a global object which is re-used.
|
|
6
6
|
const RESULT = getEmptyResult();
|
|
7
7
|
export function parse(url, options = {}) {
|
|
8
|
-
return parseImpl(url, 5 /* ALL */, suffixLookup, options, getEmptyResult());
|
|
8
|
+
return parseImpl(url, 5 /* FLAG.ALL */, suffixLookup, options, getEmptyResult());
|
|
9
9
|
}
|
|
10
10
|
export function getHostname(url, options = {}) {
|
|
11
11
|
/*@__INLINE__*/ resetResult(RESULT);
|
|
12
|
-
return parseImpl(url, 0 /* HOSTNAME */, suffixLookup, options, RESULT).hostname;
|
|
12
|
+
return parseImpl(url, 0 /* FLAG.HOSTNAME */, suffixLookup, options, RESULT).hostname;
|
|
13
13
|
}
|
|
14
14
|
export function getPublicSuffix(url, options = {}) {
|
|
15
15
|
/*@__INLINE__*/ resetResult(RESULT);
|
|
16
|
-
return parseImpl(url, 2 /* PUBLIC_SUFFIX */, suffixLookup, options, RESULT)
|
|
16
|
+
return parseImpl(url, 2 /* FLAG.PUBLIC_SUFFIX */, suffixLookup, options, RESULT)
|
|
17
17
|
.publicSuffix;
|
|
18
18
|
}
|
|
19
19
|
export function getDomain(url, options = {}) {
|
|
20
20
|
/*@__INLINE__*/ resetResult(RESULT);
|
|
21
|
-
return parseImpl(url, 3 /* DOMAIN */, suffixLookup, options, RESULT).domain;
|
|
21
|
+
return parseImpl(url, 3 /* FLAG.DOMAIN */, suffixLookup, options, RESULT).domain;
|
|
22
22
|
}
|
|
23
23
|
export function getSubdomain(url, options = {}) {
|
|
24
24
|
/*@__INLINE__*/ resetResult(RESULT);
|
|
25
|
-
return parseImpl(url, 4 /* SUB_DOMAIN */, suffixLookup, options, RESULT)
|
|
25
|
+
return parseImpl(url, 4 /* FLAG.SUB_DOMAIN */, suffixLookup, options, RESULT)
|
|
26
26
|
.subdomain;
|
|
27
27
|
}
|
|
28
28
|
export function getDomainWithoutSuffix(url, options = {}) {
|
|
29
29
|
/*@__INLINE__*/ resetResult(RESULT);
|
|
30
|
-
return parseImpl(url, 5 /* ALL */, suffixLookup, options, RESULT)
|
|
30
|
+
return parseImpl(url, 5 /* FLAG.ALL */, suffixLookup, options, RESULT)
|
|
31
31
|
.domainWithoutSuffix;
|
|
32
32
|
}
|
|
33
33
|
//# sourceMappingURL=index.js.map
|
package/dist/es6/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../index.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,cAAc,EAGd,SAAS,EACT,WAAW,GACZ,MAAM,YAAY,CAAC;AAEpB,OAAO,YAAY,MAAM,qBAAqB,CAAC;AAE/C,4EAA4E;AAC5E,+EAA+E;AAC/E,yEAAyE;AACzE,MAAM,MAAM,GAAY,cAAc,EAAE,CAAC;AAEzC,MAAM,UAAU,KAAK,CAAC,GAAW,EAAE,UAA6B,EAAE;IAChE,OAAO,SAAS,CAAC,GAAG,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../index.ts"],"names":[],"mappings":"AAAA,OAAO,EAEL,cAAc,EAGd,SAAS,EACT,WAAW,GACZ,MAAM,YAAY,CAAC;AAEpB,OAAO,YAAY,MAAM,qBAAqB,CAAC;AAE/C,4EAA4E;AAC5E,+EAA+E;AAC/E,yEAAyE;AACzE,MAAM,MAAM,GAAY,cAAc,EAAE,CAAC;AAEzC,MAAM,UAAU,KAAK,CAAC,GAAW,EAAE,UAA6B,EAAE;IAChE,OAAO,SAAS,CAAC,GAAG,oBAAY,YAAY,EAAE,OAAO,EAAE,cAAc,EAAE,CAAC,CAAC;AAC3E,CAAC;AAED,MAAM,UAAU,WAAW,CACzB,GAAW,EACX,UAA6B,EAAE;IAE/B,eAAe,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC;IACpC,OAAO,SAAS,CAAC,GAAG,yBAAiB,YAAY,EAAE,OAAO,EAAE,MAAM,CAAC,CAAC,QAAQ,CAAC;AAC/E,CAAC;AAED,MAAM,UAAU,eAAe,CAC7B,GAAW,EACX,UAA6B,EAAE;IAE/B,eAAe,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC;IACpC,OAAO,SAAS,CAAC,GAAG,8BAAsB,YAAY,EAAE,OAAO,EAAE,MAAM,CAAC;SACrE,YAAY,CAAC;AAClB,CAAC;AAED,MAAM,UAAU,SAAS,CACvB,GAAW,EACX,UAA6B,EAAE;IAE/B,eAAe,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC;IACpC,OAAO,SAAS,CAAC,GAAG,uBAAe,YAAY,EAAE,OAAO,EAAE,MAAM,CAAC,CAAC,MAAM,CAAC;AAC3E,CAAC;AAED,MAAM,UAAU,YAAY,CAC1B,GAAW,EACX,UAA6B,EAAE;IAE/B,eAAe,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC;IACpC,OAAO,SAAS,CAAC,GAAG,2BAAmB,YAAY,EAAE,OAAO,EAAE,MAAM,CAAC;SAClE,SAAS,CAAC;AACf,CAAC;AAED,MAAM,UAAU,sBAAsB,CACpC,GAAW,EACX,UAA6B,EAAE;IAE/B,eAAe,CAAC,WAAW,CAAC,MAAM,CAAC,CAAC;IACpC,OAAO,SAAS,CAAC,GAAG,oBAAY,YAAY,EAAE,OAAO,EAAE,MAAM,CAAC;SAC3D,mBAAmB,CAAC;AACzB,CAAC"}
|
|
@@ -75,7 +75,7 @@ export default function suffixLookup(hostname, options, out) {
|
|
|
75
75
|
const { allowIcannDomains, allowPrivateDomains } = options;
|
|
76
76
|
// Keep track of longest match
|
|
77
77
|
let matchIndex = -1;
|
|
78
|
-
let matchKind = 0 /* NO_MATCH */;
|
|
78
|
+
let matchKind = 0 /* Result.NO_MATCH */;
|
|
79
79
|
let matchLabels = 0; // Keep track of number of labels currently matched
|
|
80
80
|
// Index in the packed array data-structure
|
|
81
81
|
let index = 1;
|
|
@@ -103,22 +103,22 @@ export default function suffixLookup(hostname, options, out) {
|
|
|
103
103
|
//
|
|
104
104
|
// **WARNING**: the structure of this code follows exactly the structure
|
|
105
105
|
// of the packed data structure as create in ./bin/builders/hashes.js
|
|
106
|
-
let match = 0 /* NO_MATCH */;
|
|
106
|
+
let match = 0 /* Result.NO_MATCH */;
|
|
107
107
|
// ========================================================================
|
|
108
108
|
// Lookup exceptions
|
|
109
109
|
// ========================================================================
|
|
110
110
|
// ICANN
|
|
111
111
|
if (allowIcannDomains === true) {
|
|
112
112
|
match = binSearch(packed, hash, index + 1, index + packed[index] + 1)
|
|
113
|
-
? 1 /* ICANN_MATCH */ | 4 /* EXCEPTION_MATCH */
|
|
114
|
-
: 0 /* NO_MATCH */;
|
|
113
|
+
? 1 /* Result.ICANN_MATCH */ | 4 /* Result.EXCEPTION_MATCH */
|
|
114
|
+
: 0 /* Result.NO_MATCH */;
|
|
115
115
|
}
|
|
116
116
|
index += packed[index] + 1;
|
|
117
117
|
// PRIVATE
|
|
118
|
-
if (allowPrivateDomains === true && match === 0 /* NO_MATCH */) {
|
|
118
|
+
if (allowPrivateDomains === true && match === 0 /* Result.NO_MATCH */) {
|
|
119
119
|
match = binSearch(packed, hash, index + 1, index + packed[index] + 1)
|
|
120
|
-
? 2 /* PRIVATE_MATCH */ | 4 /* EXCEPTION_MATCH */
|
|
121
|
-
: 0 /* NO_MATCH */;
|
|
120
|
+
? 2 /* Result.PRIVATE_MATCH */ | 4 /* Result.EXCEPTION_MATCH */
|
|
121
|
+
: 0 /* Result.NO_MATCH */;
|
|
122
122
|
}
|
|
123
123
|
index += packed[index] + 1;
|
|
124
124
|
// ========================================================================
|
|
@@ -126,20 +126,20 @@ export default function suffixLookup(hostname, options, out) {
|
|
|
126
126
|
// ========================================================================
|
|
127
127
|
// ICANN
|
|
128
128
|
if (allowIcannDomains === true &&
|
|
129
|
-
match === 0 /* NO_MATCH */ &&
|
|
130
|
-
(matchKind & 4 /* EXCEPTION_MATCH */) === 0) {
|
|
129
|
+
match === 0 /* Result.NO_MATCH */ &&
|
|
130
|
+
(matchKind & 4 /* Result.EXCEPTION_MATCH */) === 0) {
|
|
131
131
|
match = binSearch(packed, hash, index + 1, index + packed[index] + 1)
|
|
132
|
-
? 16 /* WILDCARD_MATCH */ | 1 /* ICANN_MATCH */
|
|
133
|
-
: 0 /* NO_MATCH */;
|
|
132
|
+
? 16 /* Result.WILDCARD_MATCH */ | 1 /* Result.ICANN_MATCH */
|
|
133
|
+
: 0 /* Result.NO_MATCH */;
|
|
134
134
|
}
|
|
135
135
|
index += packed[index] + 1;
|
|
136
136
|
// PRIVATE
|
|
137
137
|
if (allowPrivateDomains === true &&
|
|
138
|
-
match === 0 /* NO_MATCH */ &&
|
|
139
|
-
(matchKind & 4 /* EXCEPTION_MATCH */) === 0) {
|
|
138
|
+
match === 0 /* Result.NO_MATCH */ &&
|
|
139
|
+
(matchKind & 4 /* Result.EXCEPTION_MATCH */) === 0) {
|
|
140
140
|
match = binSearch(packed, hash, index + 1, index + packed[index] + 1)
|
|
141
|
-
? 16 /* WILDCARD_MATCH */ | 2 /* PRIVATE_MATCH */
|
|
142
|
-
: 0 /* NO_MATCH */;
|
|
141
|
+
? 16 /* Result.WILDCARD_MATCH */ | 2 /* Result.PRIVATE_MATCH */
|
|
142
|
+
: 0 /* Result.NO_MATCH */;
|
|
143
143
|
}
|
|
144
144
|
index += packed[index] + 1;
|
|
145
145
|
// ========================================================================
|
|
@@ -147,22 +147,22 @@ export default function suffixLookup(hostname, options, out) {
|
|
|
147
147
|
// ========================================================================
|
|
148
148
|
// ICANN
|
|
149
149
|
if (allowIcannDomains === true &&
|
|
150
|
-
match === 0 /* NO_MATCH */ &&
|
|
151
|
-
(matchKind & 4 /* EXCEPTION_MATCH */) === 0 &&
|
|
150
|
+
match === 0 /* Result.NO_MATCH */ &&
|
|
151
|
+
(matchKind & 4 /* Result.EXCEPTION_MATCH */) === 0 &&
|
|
152
152
|
matchLabels <= label) {
|
|
153
153
|
match = binSearch(packed, hash, index + 1, index + packed[index] + 1)
|
|
154
|
-
? 8 /* NORMAL_MATCH */ | 1 /* ICANN_MATCH */
|
|
155
|
-
: 0 /* NO_MATCH */;
|
|
154
|
+
? 8 /* Result.NORMAL_MATCH */ | 1 /* Result.ICANN_MATCH */
|
|
155
|
+
: 0 /* Result.NO_MATCH */;
|
|
156
156
|
}
|
|
157
157
|
index += packed[index] + 1;
|
|
158
158
|
// PRIVATE
|
|
159
159
|
if (allowPrivateDomains === true &&
|
|
160
|
-
match === 0 /* NO_MATCH */ &&
|
|
161
|
-
(matchKind & 4 /* EXCEPTION_MATCH */) === 0 &&
|
|
160
|
+
match === 0 /* Result.NO_MATCH */ &&
|
|
161
|
+
(matchKind & 4 /* Result.EXCEPTION_MATCH */) === 0 &&
|
|
162
162
|
matchLabels <= label) {
|
|
163
163
|
match = binSearch(packed, hash, index + 1, index + packed[index] + 1)
|
|
164
|
-
? 8 /* NORMAL_MATCH */ | 2 /* PRIVATE_MATCH */
|
|
165
|
-
: 0 /* NO_MATCH */;
|
|
164
|
+
? 8 /* Result.NORMAL_MATCH */ | 2 /* Result.PRIVATE_MATCH */
|
|
165
|
+
: 0 /* Result.NO_MATCH */;
|
|
166
166
|
}
|
|
167
167
|
index += packed[index] + 1;
|
|
168
168
|
// If we found a match, the longest match that is being tracked for this
|
|
@@ -171,14 +171,14 @@ export default function suffixLookup(hostname, options, out) {
|
|
|
171
171
|
// as well as the number of labels contained in this suffix (this is
|
|
172
172
|
// important to make sure that we always keep the longest match if there
|
|
173
173
|
// are both a wildcard and a normal rule matching).
|
|
174
|
-
if (match !== 0 /* NO_MATCH */) {
|
|
174
|
+
if (match !== 0 /* Result.NO_MATCH */) {
|
|
175
175
|
matchKind = match;
|
|
176
|
-
matchLabels = label + ((match & 16 /* WILDCARD_MATCH */) !== 0 ? 2 : 1);
|
|
176
|
+
matchLabels = label + ((match & 16 /* Result.WILDCARD_MATCH */) !== 0 ? 2 : 1);
|
|
177
177
|
matchIndex = labelStart;
|
|
178
178
|
}
|
|
179
179
|
}
|
|
180
|
-
out.isIcann = (matchKind & 1 /* ICANN_MATCH */) !== 0;
|
|
181
|
-
out.isPrivate = (matchKind & 2 /* PRIVATE_MATCH */) !== 0;
|
|
180
|
+
out.isIcann = (matchKind & 1 /* Result.ICANN_MATCH */) !== 0;
|
|
181
|
+
out.isPrivate = (matchKind & 2 /* Result.PRIVATE_MATCH */) !== 0;
|
|
182
182
|
// No match found
|
|
183
183
|
if (matchIndex === -1) {
|
|
184
184
|
out.publicSuffix =
|
|
@@ -188,14 +188,14 @@ export default function suffixLookup(hostname, options, out) {
|
|
|
188
188
|
// If match is an exception, this means that we need to count less label.
|
|
189
189
|
// For example, exception rule !foo.com would yield suffix 'com', so we need
|
|
190
190
|
// to locate the next dot and slice from there.
|
|
191
|
-
if ((matchKind & 4 /* EXCEPTION_MATCH */) !== 0) {
|
|
191
|
+
if ((matchKind & 4 /* Result.EXCEPTION_MATCH */) !== 0) {
|
|
192
192
|
out.publicSuffix = hostname.slice(BUFFER[((matchLabels - 2) << 1) + 1]);
|
|
193
193
|
return;
|
|
194
194
|
}
|
|
195
195
|
// If match is a wildcard, we need to match one more label. If wildcard rule
|
|
196
196
|
// was *.com, we would have stored only 'com' in the packed structure and we
|
|
197
197
|
// need to take one extra label on the left.
|
|
198
|
-
if ((matchKind & 16 /* WILDCARD_MATCH */) !== 0) {
|
|
198
|
+
if ((matchKind & 16 /* Result.WILDCARD_MATCH */) !== 0) {
|
|
199
199
|
out.publicSuffix =
|
|
200
200
|
matchLabels >= numberOfHashes
|
|
201
201
|
? hostname
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"packed-hashes.js","sourceRoot":"","sources":["../../../src/packed-hashes.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,cAAc,GAGf,MAAM,YAAY,CAAC;AACpB,OAAO,MAAM,MAAM,eAAe,CAAC;AAEnC;;;GAGG;AACH,SAAS,SAAS,CAChB,GAAgB,EAChB,GAAW,EACX,KAAa,EACb,GAAW;IAEX,IAAI,KAAK,IAAI,GAAG,EAAE;QAChB,OAAO,KAAK,CAAC;KACd;IAED,IAAI,GAAG,GAAG,KAAK,CAAC;IAChB,IAAI,IAAI,GAAG,GAAG,GAAG,CAAC,CAAC;IAEnB,OAAO,GAAG,IAAI,IAAI,EAAE;QAClB,MAAM,GAAG,GAAG,CAAC,GAAG,GAAG,IAAI,CAAC,KAAK,CAAC,CAAC;QAC/B,MAAM,MAAM,GAAG,GAAG,CAAC,GAAG,CAAC,CAAC;QACxB,IAAI,MAAM,GAAG,GAAG,EAAE;YAChB,GAAG,GAAG,GAAG,GAAG,CAAC,CAAC;SACf;aAAM,IAAI,MAAM,GAAG,GAAG,EAAE;YACvB,IAAI,GAAG,GAAG,GAAG,CAAC,CAAC;SAChB;aAAM;YACL,OAAO,IAAI,CAAC;SACb;KACF;IAED,OAAO,KAAK,CAAC;AACf,CAAC;AAED,2EAA2E;AAC3E,0EAA0E;AAC1E,4CAA4C;AAC5C,MAAM,MAAM,GAAG,IAAI,WAAW,CAAC,EAAE,CAAC,CAAC;AAEnC;;;;;;;;GAQG;AACH,SAAS,0BAA0B,CACjC,QAAgB,EAChB,qBAA6B;IAE7B,IAAI,IAAI,GAAG,IAAI,CAAC;IAChB,IAAI,KAAK,GAAG,CAAC,CAAC;IAEd,yCAAyC;IACzC,KAAK,IAAI,CAAC,GAAG,QAAQ,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC,IAAI,CAAC,EAAE,CAAC,IAAI,CAAC,EAAE;QAChD,MAAM,IAAI,GAAG,QAAQ,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC;QACpC,gBAAgB;QAChB,IAAI,IAAI,KAAK,EAAE,CAAC,SAAS,EAAE;YACzB,MAAM,CAAC,KAAK,IAAI,CAAC,CAAC,GAAG,IAAI,KAAK,CAAC,CAAC;YAChC,MAAM,CAAC,CAAC,KAAK,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,GAAG,CAAC,CAAC;YACjC,KAAK,IAAI,CAAC,CAAC;YAEX,IAAI,KAAK,KAAK,qBAAqB,EAAE;gBACnC,OAAO,KAAK,CAAC;aACd;SACF;QAED,cAAc;QACd,IAAI,GAAG,CAAC,IAAI,GAAG,EAAE,CAAC,GAAG,IAAI,CAAC;KAC3B;IAED,oCAAoC;IACpC,MAAM,CAAC,KAAK,IAAI,CAAC,CAAC,GAAG,IAAI,KAAK,CAAC,CAAC;IAChC,MAAM,CAAC,CAAC,KAAK,IAAI,CAAC,CAAC,GAAG,CAAC,CAAC,GAAG,CAAC,CAAC;IAC7B,KAAK,IAAI,CAAC,CAAC;IAEX,OAAO,KAAK,CAAC;AACf,CAAC;AAWD;;;;;GAKG;AACH,MAAM,CAAC,OAAO,UAAU,YAAY,CAClC,QAAgB,EAChB,OAA6B,EAC7B,GAAkB;IAElB,IAAI,cAAc,CAAC,QAAQ,EAAE,OAAO,EAAE,GAAG,CAAC,KAAK,IAAI,EAAE;QACnD,OAAO;KACR;IAED,MAAM,EAAE,iBAAiB,EAAE,mBAAmB,EAAE,GAAG,OAAO,CAAC;IAE3D,8BAA8B;IAC9B,IAAI,UAAU,GAAG,CAAC,CAAC,CAAC;IACpB,IAAI,SAAS,
|
|
1
|
+
{"version":3,"file":"packed-hashes.js","sourceRoot":"","sources":["../../../src/packed-hashes.ts"],"names":[],"mappings":"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"}
|