Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@applitools/visual-grid-client

Package Overview
Dependencies
Maintainers
12
Versions
574
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@applitools/visual-grid-client - npm Package Compare versions

Comparing version 5.3.9 to 5.3.10

2

package.json
{
"name": "@applitools/visual-grid-client",
"version": "5.3.9",
"version": "5.3.10",
"description": "",

@@ -5,0 +5,0 @@ "main": "src/visual-grid-client.js",

@@ -32,3 +32,6 @@ 'use strict';

entry.dependencies.forEach(dep => {
Object.assign(ret, getWithDependencies(dep));
// stop condition to avoid infinite recursion
if (!ret[dep]) {
Object.assign(ret, getWithDependencies(dep));
}
});

@@ -43,2 +46,10 @@ }

// for debugging purposes
function toJSON() {
return Object.keys(cache).reduce((acc, curr) => {
acc[curr] = {length: cache[curr].value.length, dependencies: cache[curr].dependencies};
return acc;
}, {});
}
const cache = {};

@@ -52,2 +63,3 @@

remove,
toJSON,
};

@@ -54,0 +66,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