webdav-tulip-2
Advanced tools
Comparing version 1.0.10 to 1.0.11
{ | ||
"name": "webdav-tulip-2", | ||
"version": "1.0.10", | ||
"version": "1.0.11", | ||
"description": "WebDAV client for NodeJS", | ||
@@ -5,0 +5,0 @@ "main": "source/index.js", |
@@ -65,2 +65,4 @@ var path = require("path"); | ||
.length; | ||
console.log('sanitisedFilePath: '); | ||
console.log(sanitisedFilePath); | ||
console.log("dirPath"); | ||
@@ -73,4 +75,4 @@ console.log(dirPath); | ||
"directory" : "file"; | ||
console.log('filename'); | ||
console.log(filename); | ||
// console.log('filename'); | ||
// console.log(filename); | ||
if (filename.length <= 0) { | ||
@@ -108,4 +110,7 @@ console.log('filename.length <= 0'); | ||
if (resultFilename[resultFLen - 1] === "/") { | ||
// If this is a directory (last character is /) then strip the last / | ||
resultFilename = resultFilename.substr(0, resultFLen - 1); | ||
} | ||
console.log("dirPath === '/'???"); | ||
console.log(dirPath); | ||
if (dirPath === "/" || dirPath === "") { | ||
@@ -119,2 +124,3 @@ var resultParts = resultFilename.split("/"); | ||
} | ||
console.log("DID NOT MEET CRITERIA"); | ||
return ""; | ||
@@ -121,0 +127,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
67106
1163