backend-assistant
Advanced tools
Comparing version 0.0.34 to 0.0.35
{ | ||
"name": "backend-assistant", | ||
"version": "0.0.34", | ||
"version": "0.0.35", | ||
"description": "Powerful assistive functions for Firebase backends", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
@@ -318,3 +318,3 @@ let _ = require('lodash'); | ||
*/ | ||
console.log(`Processed field ${fieldname}: ${val}.`); | ||
// console.log(`Processed field ${fieldname}: ${val}.`); | ||
fields[fieldname] = val; | ||
@@ -329,3 +329,3 @@ }); | ||
// Thus, any files in it must fit in the instance's memory. | ||
console.log(`Processed file ${filename}`); | ||
// console.log(`Processed file ${filename}`); | ||
const filepath = path.join(tmpdir, filename); | ||
@@ -359,5 +359,5 @@ uploads[fieldname] = filepath; | ||
*/ | ||
for (const file in uploads) { | ||
fs.unlinkSync(uploads[file]); | ||
} | ||
// for (const file in uploads) { | ||
// fs.unlinkSync(uploads[file]); | ||
// } | ||
// res.send(); | ||
@@ -364,0 +364,0 @@ return resolve({ |
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
18663