formidable
Advanced tools
Comparing version 3.2.0 to 3.2.1
{ | ||
"name": "formidable", | ||
"version": "3.2.0", | ||
"version": "3.2.1", | ||
"license": "MIT", | ||
@@ -16,3 +16,3 @@ "description": "A node.js module for parsing form data, especially file uploads.", | ||
"access": "public", | ||
"tag": "v4" | ||
"tag": "v3" | ||
}, | ||
@@ -19,0 +19,0 @@ "scripts": { |
@@ -81,3 +81,6 @@ /* eslint-disable no-underscore-dangle */ | ||
this._writeStream.destroy(); | ||
unlink(this.filepath, () => {}); | ||
const filepath = this.filepath; | ||
setTimeout(function () { | ||
unlink(filepath, () => {}); | ||
}, 1) | ||
} | ||
@@ -84,0 +87,0 @@ } |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
91798
1573