@k03mad/dns-leak 7.9.0 → 8.0.0
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/.nvmrc +1 -1
- package/.vscode/settings.json +4 -1
- package/app/api/cloud-ping.js +12 -12
- package/app/helpers/text.js +1 -1
- package/app/run.js +1 -1
- package/package.json +8 -8
package/.nvmrc
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
22
|
package/.vscode/settings.json
CHANGED
package/app/api/cloud-ping.js
CHANGED
|
@@ -13,18 +13,6 @@ export default class CloudPing {
|
|
|
13
13
|
this._requestsRps = requestsRps;
|
|
14
14
|
}
|
|
15
15
|
|
|
16
|
-
/** */
|
|
17
|
-
static get endpoints() {
|
|
18
|
-
return {
|
|
19
|
-
|
|
20
|
-
/** */
|
|
21
|
-
edge: () => 'https://edge.feitsui.com/',
|
|
22
|
-
|
|
23
|
-
/** */
|
|
24
|
-
locations: () => 'https://www.cloudping.cloud/cloudfront-edge-locations.json',
|
|
25
|
-
};
|
|
26
|
-
}
|
|
27
|
-
|
|
28
16
|
/**
|
|
29
17
|
* @returns {Promise<object>}
|
|
30
18
|
*/
|
|
@@ -63,4 +51,16 @@ export default class CloudPing {
|
|
|
63
51
|
return {...locations[iata.replace(/\d.+/, '')], iata};
|
|
64
52
|
}
|
|
65
53
|
|
|
54
|
+
/** */
|
|
55
|
+
static get endpoints() {
|
|
56
|
+
return {
|
|
57
|
+
|
|
58
|
+
/** */
|
|
59
|
+
edge: () => 'https://edge.feitsui.com/',
|
|
60
|
+
|
|
61
|
+
/** */
|
|
62
|
+
locations: () => 'https://www.cloudping.cloud/cloudfront-edge-locations.json',
|
|
63
|
+
};
|
|
64
|
+
}
|
|
65
|
+
|
|
66
66
|
}
|
package/app/helpers/text.js
CHANGED
package/app/run.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@k03mad/dns-leak",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "8.0.0",
|
|
4
4
|
"description": "DNS leak test",
|
|
5
5
|
"maintainers": [
|
|
6
6
|
"Kirill Molchanov <k03.mad@gmail.com"
|
|
@@ -15,21 +15,21 @@
|
|
|
15
15
|
"license": "MIT",
|
|
16
16
|
"type": "module",
|
|
17
17
|
"engines": {
|
|
18
|
-
"node": ">=
|
|
18
|
+
"node": ">=22"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@k03mad/ip2geo": "10.
|
|
22
|
-
"@k03mad/request": "6.
|
|
21
|
+
"@k03mad/ip2geo": "10.5.0",
|
|
22
|
+
"@k03mad/request": "6.4.0",
|
|
23
23
|
"@k03mad/simple-log": "4.2.0",
|
|
24
24
|
"chalk": "5.3.0",
|
|
25
25
|
"country-locale-map": "1.9.8",
|
|
26
|
-
"nanoid": "5.0.
|
|
26
|
+
"nanoid": "5.0.8",
|
|
27
27
|
"nanoid-dictionary": "5.0.0-beta.1",
|
|
28
|
-
"ora": "8.1.
|
|
28
|
+
"ora": "8.1.1"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
|
-
"@k03mad/eslint-config": "25.6.
|
|
32
|
-
"eslint": "8.57.
|
|
31
|
+
"@k03mad/eslint-config": "25.6.4",
|
|
32
|
+
"eslint": "8.57.1",
|
|
33
33
|
"husky": "9.1.6"
|
|
34
34
|
},
|
|
35
35
|
"scripts": {
|