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

multiparty

Package Overview
Dependencies
Maintainers
2
Versions
40
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

multiparty - npm Package Compare versions

Comparing version 3.2.5 to 3.2.6

4

CHANGELOG.md

@@ -0,1 +1,5 @@

### 3.2.6
* Fix maxFields to error on field after max
### 3.2.5

@@ -2,0 +6,0 @@

2

index.js

@@ -456,3 +456,3 @@ exports.Form = Form;

self.totalFieldCount += 1;
if (self.totalFieldCount >= self.maxFields) {
if (self.totalFieldCount > self.maxFields) {
return new Error("maxFields " + self.maxFields + " exceeded.");

@@ -459,0 +459,0 @@ }

{
"name": "multiparty",
"version": "3.2.5",
"version": "3.2.6",
"description": "multipart/form-data parser which supports streaming",

@@ -5,0 +5,0 @@ "repository": {

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