Socket
Socket
Sign inDemoInstall

source-map-explorer-har

Package Overview
Dependencies
96
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.1.0 to 1.1.1

2

package.json
{
"name": "source-map-explorer-har",
"version": "1.1.0",
"version": "1.1.1",
"main": "index.js",

@@ -5,0 +5,0 @@ "bin": {

@@ -30,5 +30,6 @@ const fs = require("fs");

const har = JSON.parse(fs.readFileSync(harPath));
const promises = [];
for (let entry of har.log.entries) {
if (entry._resourceType === "script") {
const promises = [];
console.log(`Downloading js and source map for ${entry.request.url}`);

@@ -40,6 +41,5 @@ promises.push(download(entry.request.url));

}
await Promise.all(promises);
}
}
await Promise.all(promises);
};
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