New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

webdav

Package Overview
Dependencies
Maintainers
1
Versions
101
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

webdav - npm Package Compare versions

Comparing version 0.3.0 to 0.3.1

2

CHANGELOG.md
# WebDAV-client changelog
## 0.3.0
## 0.3.1
_2017-01-18_

@@ -5,0 +5,0 @@

{
"name": "webdav",
"version": "0.3.0",
"version": "0.3.1",
"description": "WebDAV client for NodeJS",

@@ -5,0 +5,0 @@ "main": "source/index.js",

@@ -62,3 +62,3 @@ var path = require("path");

}
filename = path.posix.normalize("/" + filename);
filename = tieFilenameToRoot(filename);
var item = {

@@ -110,2 +110,10 @@ filename: filename,

function tieFilenameToRoot(filename) {
if (path && path.posix) {
return path.posix.normalize("/" + filename);
}
// for when posix isn't available (web-packaged builds)
return path.normalize("/" + filename);
}
module.exports = {

@@ -112,0 +120,0 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc