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

@applitools/dom-snapshot

Package Overview
Dependencies
Maintainers
15
Versions
186
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@applitools/dom-snapshot - npm Package Compare versions

Comparing version 1.1.1 to 1.1.2

6

dist/processPage.js

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

// @applitools/dom-snapshot@1.1.1
// @applitools/dom-snapshot@1.1.2
function __processPage() {

@@ -173,3 +173,5 @@ var processPage = (function () {

function uniq(arr) {
return Array.from(new Set(arr)).filter(x => !!x);
const result = [];
new Set(arr).forEach(v => v && result.push(v));
return result;
}

@@ -176,0 +178,0 @@

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

// @applitools/dom-snapshot@1.1.1
// @applitools/dom-snapshot@1.1.2
function __processPageAndSerialize() {

@@ -225,3 +225,5 @@ var processPageAndSerialize = (function () {

function uniq(arr) {
return Array.from(new Set(arr)).filter(x => !!x);
const result = [];
new Set(arr).forEach(v => v && result.push(v));
return result;
}

@@ -228,0 +230,0 @@

{
"name": "@applitools/dom-snapshot",
"version": "1.1.1",
"version": "1.1.2",
"main": "index.js",

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

'use strict';
function uniq(arr) {
return Array.from(new Set(arr)).filter(x => !!x);
const result = [];
new Set(arr).forEach(v => v && result.push(v));
return result;
}
module.exports = uniq;
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