Socket
Socket
Sign inDemoInstall

wd

Package Overview
Dependencies
Maintainers
1
Versions
110
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

wd - npm Package Compare versions

Comparing version 0.0.7 to 0.0.8

18

lib/main.js

@@ -137,3 +137,10 @@ var http = require("http");

res.on('end', function() {
if (cb){ cb(JSON.parse(strip(data)).value); }
if (cb) {
try {
cb(JSON.parse(strip(data)).value);
} catch(err) {
cb(data);
throw err;
}
}
});

@@ -156,3 +163,10 @@ });

res.on('end', function() {
if (cb){ cb(JSON.parse(strip(data)).value); }
if (cb) {
try {
cb(JSON.parse(strip(data)).value);
} catch(err) {
cb(data);
throw err;
}
}
});

@@ -159,0 +173,0 @@ });

2

package.json
{ "name" : "wd"
, "description" : "WebDriver/Selenium 2 node.js client"
, "tags" : ["web", "automation", "browser", "javascript"]
, "version" : "0.0.7"
, "version" : "0.0.8"
, "author" : "Adam Christian <adam.christian@gmail.com>"

@@ -6,0 +6,0 @@ , "repository" :

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