@uniformdev/redirect 20.20.3 → 20.23.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/dist/index.esm.js +1 -1
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +3 -3
package/dist/index.esm.js
CHANGED
|
@@ -449,7 +449,7 @@ var _RedirectClient = class _RedirectClient extends ApiClient {
|
|
|
449
449
|
),
|
|
450
450
|
options
|
|
451
451
|
);
|
|
452
|
-
});
|
|
452
|
+
}).filter((r) => typeof r !== "undefined");
|
|
453
453
|
}
|
|
454
454
|
const trie = await this.getRedirectTrie();
|
|
455
455
|
return _RedirectClient.processHops(sanitizedUrl, trie, false, options);
|
package/dist/index.js
CHANGED
|
@@ -495,7 +495,7 @@ var _RedirectClient = class _RedirectClient extends import_api.ApiClient {
|
|
|
495
495
|
),
|
|
496
496
|
options
|
|
497
497
|
);
|
|
498
|
-
});
|
|
498
|
+
}).filter((r) => typeof r !== "undefined");
|
|
499
499
|
}
|
|
500
500
|
const trie = await this.getRedirectTrie();
|
|
501
501
|
return _RedirectClient.processHops(sanitizedUrl, trie, false, options);
|
package/dist/index.mjs
CHANGED
|
@@ -449,7 +449,7 @@ var _RedirectClient = class _RedirectClient extends ApiClient {
|
|
|
449
449
|
),
|
|
450
450
|
options
|
|
451
451
|
);
|
|
452
|
-
});
|
|
452
|
+
}).filter((r) => typeof r !== "undefined");
|
|
453
453
|
}
|
|
454
454
|
const trie = await this.getRedirectTrie();
|
|
455
455
|
return _RedirectClient.processHops(sanitizedUrl, trie, false, options);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniformdev/redirect",
|
|
3
|
-
"version": "20.
|
|
3
|
+
"version": "20.23.0",
|
|
4
4
|
"description": "Uniform redirect client",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -33,12 +33,12 @@
|
|
|
33
33
|
"/dist"
|
|
34
34
|
],
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@uniformdev/context": "20.
|
|
36
|
+
"@uniformdev/context": "20.23.0",
|
|
37
37
|
"p-limit": "^3.1.0",
|
|
38
38
|
"rfdc": "^1.4.1"
|
|
39
39
|
},
|
|
40
40
|
"publishConfig": {
|
|
41
41
|
"access": "public"
|
|
42
42
|
},
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "cc8a0ba91f036c7dea8d3a2dffad3373dec9cf2b"
|
|
44
44
|
}
|