New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@applitools/dom-shared

Package Overview
Dependencies
Maintainers
33
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@applitools/dom-shared - npm Package Compare versions

Comparing version 1.0.8 to 1.0.9

2

.bongo/dry-run/package-lock.json

@@ -7,5 +7,5 @@ {

"version": "file:../dry-run.tgz",
"integrity": "sha512-scNrcvkIZ86VSbjuosbu0YqCfHbmsK+VDPD2f4lsEjxxavZN775R26nc4/D9JeaIajf0TeXx9XYqaW3kePsFqA=="
"integrity": "sha512-sccRuPtdAyz9MWEpzyCGiFlQIPRrKGefMA5TGM1n9OaXUXO/3uYZiAW4ZvEMlVZZGGV1HCroX7KQLqWweZqCFg=="
}
}
}

@@ -7,2 +7,6 @@

## 1.0.9 - 2022/9/30
- fix url parsing
## 1.0.8 - 2021/10/20

@@ -9,0 +13,0 @@

{
"name": "@applitools/dom-shared",
"version": "1.0.8",
"version": "1.0.9",
"main": "index.js",

@@ -5,0 +5,0 @@ "license": "SEE LICENSE IN LICENSE",

@@ -1,4 +0,12 @@

'use strict';
function isAbsoluteUrl(url) {
try {
new URL(url);
return true;
} catch (err) {
return false;
}
}
function absolutizeUrl(url, baseUrl) {
if (isAbsoluteUrl(url)) return url;
let isEncoded = true;

@@ -5,0 +13,0 @@ try {

Sorry, the diff of this file is not supported yet

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