Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

http-call

Package Overview
Dependencies
Maintainers
5
Versions
62
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

http-call - npm Package Compare versions

Comparing version 5.2.2 to 5.2.3

4

lib/http.js

@@ -284,3 +284,3 @@ "use strict";

if (this.options.body)
output.push(' ' + this.options.body);
output.push(this.options.body);
debug(output.join('\n'));

@@ -296,3 +296,3 @@ }

if (this.body)
output.push(' ' + util.inspect(this.body));
output.push(util.inspect(this.body));
debug(output.join('\n'));

@@ -299,0 +299,0 @@ }

@@ -21,3 +21,5 @@ "use strict";

if (certDir) {
return fs.readdirSync(certDir).map(f => path.join(certDir, f));
return fs.readdirSync(certDir)
.map(f => path.join(certDir, f))
.filter(f => fs.statSync(f).isFile());
}

@@ -24,0 +26,0 @@ else {

{
"name": "http-call",
"description": "make http requests",
"version": "5.2.2",
"version": "5.2.3",
"author": "Jeff Dickey @jdxcode",

@@ -6,0 +6,0 @@ "bugs": "https://github.com/heroku/http-call/issues",

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