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
34
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.9 to 1.0.10

.bongo/dry-run/package.json

21

.bongo/dry-run/package-lock.json
{
"name": "dry-run",
"lockfileVersion": 2,
"requires": true,
"lockfileVersion": 1,
"packages": {
"": {
"dependencies": {
"@applitools/dom-shared": "file:../dry-run.tgz"
}
},
"node_modules/@applitools/dom-shared": {
"version": "1.0.9",
"resolved": "file:../dry-run.tgz",
"integrity": "sha512-CbsZ5S0w/qMl2Qhy7Y+gv7eEsev+DzWrasoFE5jAEdqUsZpSS7aRSzFC5JZODtVzTxagPhIvavWgL+TlHizF1w==",
"license": "SEE LICENSE IN LICENSE",
"engines": {
"node": ">=8.9.0"
}
}
},
"dependencies": {
"@applitools/dom-shared": {
"version": "file:../dry-run.tgz",
"integrity": "sha512-sccRuPtdAyz9MWEpzyCGiFlQIPRrKGefMA5TGM1n9OaXUXO/3uYZiAW4ZvEMlVZZGGV1HCroX7KQLqWweZqCFg=="
"integrity": "sha512-CbsZ5S0w/qMl2Qhy7Y+gv7eEsev+DzWrasoFE5jAEdqUsZpSS7aRSzFC5JZODtVzTxagPhIvavWgL+TlHizF1w=="
}
}
}

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

## 1.0.10 - 2023/2/24
- add fallback for url absolutization
## 1.0.9 - 2022/9/30

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

2

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

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

@@ -18,6 +18,10 @@ function isAbsoluteUrl(url) {

}
const absoluteUrl = new URL(url, baseUrl).href;
return !isEncoded ? decodeURI(absoluteUrl) : absoluteUrl;
try {
const absoluteUrl = new URL(url, baseUrl).href;
return !isEncoded ? decodeURI(absoluteUrl) : absoluteUrl;
} catch (err) {
return !isEncoded ? decodeURI(url) : url;
}
}
module.exports = absolutizeUrl;

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