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

@applitools/dom-capture

Package Overview
Dependencies
Maintainers
12
Versions
96
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@applitools/dom-capture - npm Package Compare versions

Comparing version 4.1.2 to 5.0.1

README.md

6

dist/captureDom.js
(function() {
function() {
var captureDom = (function () {

@@ -400,3 +400,3 @@ 'use strict';

return captureDom();
})()
return captureDom.apply(this, arguments);
}
(function() {
function() {
var processPage = (function () {

@@ -247,3 +247,3 @@ 'use strict';

return processPage();
})()
return processPage.apply(this, arguments);
}
(function() {
function() {
var processPageAndSerialize = (function () {

@@ -315,3 +315,3 @@ 'use strict';

return processPageAndSerialize();
})()
return processPageAndSerialize.apply(this, arguments);
}

@@ -0,2 +1,8 @@

'use strict';
const processPage = require('./src/visual-grid/processPage');
const processPageAndSerialize = require('./src/visual-grid/processPageAndSerialize');
const makeGetScript = require('./src/getScript');
const getCaptureDomScript = makeGetScript('captureDom');

@@ -7,2 +13,4 @@ const getProcessPageScript = makeGetScript('processPage');

module.exports = {
processPage,
processPageAndSerialize,
getCaptureDomScript,

@@ -9,0 +17,0 @@ getProcessPageScript,

{
"name": "@applitools/dom-capture",
"version": "4.1.2",
"version": "5.0.1",
"main": "index.js",

@@ -5,0 +5,0 @@ "license": "MIT",

@@ -12,6 +12,6 @@ 'use strict';

bundleFile.code = `
(function() {
function() {
${bundleFile.code}
return ${filename}();
})()`;
return ${filename}.apply(this, arguments);
}`;
},

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