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

@sumor/api-middleware

Package Overview
Dependencies
Maintainers
0
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@sumor/api-middleware - npm Package Compare versions

Comparing version 1.1.2 to 1.1.3

2

package.json
{
"name": "@sumor/api-middleware",
"description": "API Middleware is a middleware for Node.JS. It can easily expose function to api, and validate parameters",
"version": "1.1.2",
"version": "1.1.3",
"license": "MIT",

@@ -6,0 +6,0 @@ "repository": "sumor-cloud/api-middleware",

@@ -41,6 +41,8 @@ import bodyParser from 'body-parser'

})
if (parameters[name].multiple !== true) {
files[name] = reqFiles[0]
} else {
files[name] = reqFiles
if (reqFiles.length > 0) {
if (parameters[name].multiple !== true) {
files[name] = reqFiles[0]
} else {
files[name] = reqFiles
}
}

@@ -47,0 +49,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