Socket
Socket
Sign inDemoInstall

virtual-device-sdk

Package Overview
Dependencies
13
Maintainers
4
Versions
72
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.9.2 to 1.9.3

6

lib/src/VirtualDevice.js

@@ -251,3 +251,3 @@ "use strict";

url = URL.parse(this.baseURL);
path = pathModule.join(url.pathname, path);
path = url.pathname === '/' ? path : url.pathname + "/" + path;
return [2, new Promise(function (resolve, reject) {

@@ -328,3 +328,3 @@ var callback = function (response) {

url = URL.parse(this.baseURL);
path = pathModule.join(url.pathname, path);
path = url.pathname === '/' ? path : url.pathname + "/" + path;
responsePromise = function () {

@@ -401,3 +401,3 @@ return new Promise(function (resolve, reject) {

var url = URL.parse(this.baseURL);
path = pathModule.join(url.pathname, path);
path = url.pathname === '/' ? path : url.pathname + "/" + path;
return new Promise(function (resolve, reject) {

@@ -404,0 +404,0 @@ var callback = function (response) {

@@ -7,3 +7,3 @@ {

"typings": "./lib/src/Index.d.ts",
"version": "1.9.2",
"version": "1.9.3",
"engines": {

@@ -10,0 +10,0 @@ "node": "> 6.0.0"

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc