backend-manager 5.0.83 → 5.0.84

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "backend-manager",
3
- "version": "5.0.83",
3
+ "version": "5.0.84",
4
4
  "description": "Quick tools for developing Firebase functions",
5
5
  "main": "src/manager/index.js",
6
6
  "bin": {
@@ -220,7 +220,7 @@ function clean(obj) {
220
220
  function stripUrl(url) {
221
221
  const newUrl = new URL(url);
222
222
 
223
- return `${newUrl.hostname}${newUrl.pathname}`.replace(/\/$/, '');
223
+ return `${newUrl.host}${newUrl.pathname}`.replace(/\/$/, '');
224
224
  }
225
225
 
226
226
  // Helper to safely stringify objects by truncating long strings (like base64)