webdav-test
Advanced tools
Comparing version 1.1.1 to 1.1.2
@@ -19,2 +19,3 @@ "use strict"; | ||
}; | ||
console.log(fetchURL); | ||
return fetch(fetchURL, fetchOptions).then(responseHandlers.handleResponseCode); | ||
@@ -21,0 +22,0 @@ } |
@@ -8,2 +8,6 @@ "use strict"; | ||
function request(url, options) { | ||
console.log("REQUEST: URL"); | ||
console.log(url); | ||
console.log("REQUEST: OPTIONS"); | ||
console.log(options); | ||
return fetchMethod(url, options); | ||
@@ -10,0 +14,0 @@ } |
@@ -23,4 +23,3 @@ "use strict"; | ||
var normalisedPath = pathStr; | ||
console.log("normalisePath"); | ||
console.log(normalisedPath); | ||
if (normalisedPath[0] !== "/") { | ||
@@ -32,2 +31,4 @@ normalisedPath = "/" + normalisedPath; | ||
} | ||
console.log("normalisePath"); | ||
console.log(decodeURIComponent(normalisedPath)); | ||
return decodeURIComponent(normalisedPath); | ||
@@ -34,0 +35,0 @@ } |
{ | ||
"name": "webdav-test", | ||
"version": "1.1.1", | ||
"version": "1.1.2", | ||
"description": "WebDAV client for NodeJS", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
@@ -22,2 +22,3 @@ "use strict"; | ||
}; | ||
console.log(fetchURL); | ||
return fetch(fetchURL, fetchOptions).then( | ||
@@ -24,0 +25,0 @@ responseHandlers.handleResponseCode |
@@ -8,2 +8,6 @@ "use strict"; | ||
function request(url, options) { | ||
console.log("REQUEST: URL"); | ||
console.log(url); | ||
console.log("REQUEST: OPTIONS"); | ||
console.log(options); | ||
return fetchMethod(url, options); | ||
@@ -10,0 +14,0 @@ } |
@@ -23,4 +23,3 @@ "use strict"; | ||
let normalisedPath = pathStr; | ||
console.log("normalisePath"); | ||
console.log(normalisedPath); | ||
if (normalisedPath[0] !== "/") { | ||
@@ -32,2 +31,4 @@ normalisedPath = "/" + normalisedPath; | ||
} | ||
console.log("normalisePath"); | ||
console.log(decodeURIComponent(normalisedPath)); | ||
return decodeURIComponent(normalisedPath); | ||
@@ -34,0 +35,0 @@ } |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
292305
1984