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

openssl-wrapper

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

openssl-wrapper - npm Package Compare versions

Comparing version 0.3.1 to 0.3.2

8

lib/index.js

@@ -51,3 +51,9 @@ 'use strict';

} else {
params.push('-' + key, options[key]);
if (Array.isArray(options[key])) {
options[key].forEach(function (value) {
params.push('-' + key, value);
});
} else {
params.push('-' + key, options[key]);
}
}

@@ -54,0 +60,0 @@ });

2

package.json
{
"name": "openssl-wrapper",
"version": "0.3.1",
"version": "0.3.2",
"description": "NodeJS OpenSSL wrapper",

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

@@ -40,3 +40,9 @@

} else {
params.push(`-${key}`, options[key]);
if (Array.isArray(options[key])) {
options[key].forEach(value => {
params.push(`-${key}`, value);
});
} else {
params.push(`-${key}`, options[key]);
}
}

@@ -43,0 +49,0 @@ });

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