6de2455917
- Added GLOBAL_MARKETS_TITLE to all translation files - Updated footer with 12 markets (4 active + 8 upcoming) - Translated market section to: zh-cn, zh-tw, ja, ko, th, vi, id, ms, hi - Built and deployed to production - CloudFront invalidation: I3RTMXVFDJXWLG3SYX208OP1CC
29 lines
542 B
JavaScript
29 lines
542 B
JavaScript
function removeUploadedFiles (uploadedFiles, remove, cb) {
|
|
var length = uploadedFiles.length
|
|
var errors = []
|
|
|
|
if (length === 0) return cb(null, errors)
|
|
|
|
function handleFile (idx) {
|
|
var file = uploadedFiles[idx]
|
|
|
|
remove(file, function (err) {
|
|
if (err) {
|
|
err.file = file
|
|
err.field = file.fieldname
|
|
errors.push(err)
|
|
}
|
|
|
|
if (idx < length - 1) {
|
|
handleFile(idx + 1)
|
|
} else {
|
|
cb(null, errors)
|
|
}
|
|
})
|
|
}
|
|
|
|
handleFile(0)
|
|
}
|
|
|
|
module.exports = removeUploadedFiles
|