Socket
Socket
Sign inDemoInstall

@openfin/multer-s3

Package Overview
Dependencies
Maintainers
5
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@openfin/multer-s3 - npm Package Compare versions

Comparing version 0.1.5 to 0.1.6

11

build/index.js

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

return resolve({
contentType: STORAGE_DEFAULTS.contentType,
contentType: "",
reStream

@@ -66,2 +66,11 @@ });

}
if (kindOf(vopts.contentType) === "string") {
this.contentType = () => Promise.resolve(vopts.contentType);
}
else if (kindOf(vopts.contentType) == "function") {
this.contentType = vopts.contentType;
}
else {
throw new Error("contentType must be a string, function or null/undefined");
}
if (kindOf(vopts.key) === "function") {

@@ -68,0 +77,0 @@ this.key = vopts.key;

2

package.json
{
"name": "@openfin/multer-s3",
"version": "0.1.5",
"version": "0.1.6",
"description": "",

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

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