Socket
Socket
Sign inDemoInstall

tiged

Package Overview
Dependencies
Maintainers
1
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tiged - npm Package Compare versions

Comparing version 2.12.5 to 2.12.6

2

package.json
{
"name": "tiged",
"version": "2.12.5",
"version": "2.12.6",
"engines": {

@@ -5,0 +5,0 @@ "node": ">=8.0.0"

@@ -61,11 +61,13 @@ const fs = require('fs-extra');

return new Promise((fulfil, reject) => {
let options = url;
const parsedUrl = URL.parse(url);
const options = {
hostname: parsedUrl.hostname,
port: parsedUrl.port,
path: parsedUrl.path,
headers: {
Connection: 'close'
}
};
if (proxy) {
const parsedUrl = URL.parse(url);
options = {
hostname: parsedUrl.host,
path: parsedUrl.path,
agent: new Agent(proxy)
};
options.agent = new Agent(proxy);
}

@@ -72,0 +74,0 @@

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