@applitools/dom-snapshot
Advanced tools
Comparing version 1.1.1 to 1.1.2
@@ -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; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
55476
1386