(req, file, cb)
| 6 | |
| 7 | const storage = multer.diskStorage({ |
| 8 | destination(req, file, cb) { |
| 9 | cb(null, 'uploads/'); |
| 10 | }, |
| 11 | filename(req, file, cb) { |
| 12 | cb(null, `${Date.now()}.jpg`); |
| 13 | }, |
nothing calls this directly
no outgoing calls
no test coverage detected