Socket
Socket
Sign inDemoInstall

@qualweb/crawler

Package Overview
Dependencies
19
Maintainers
4
Versions
26
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.3.11 to 0.3.12

11

dist/index.js

@@ -326,3 +326,12 @@ "use strict";

});
const unique = [...new Set(normalizedUrls)].map((u) => decodeURIComponent(u));
const unique = [...new Set(normalizedUrls)]
.map((u) => {
try {
return decodeURIComponent(u);
}
catch (err) {
return null;
}
})
.filter((u) => u !== null);
return unique.sort();

@@ -329,0 +338,0 @@ }

2

package.json
{
"name": "@qualweb/crawler",
"version": "0.3.11",
"version": "0.3.12",
"description": "Webpage crawler for qualweb",

@@ -5,0 +5,0 @@ "main": "dist/index.js",

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc