MCPcopy Create free account
hub / github.com/basir/node-react-ecommerce / destination

Function destination

backend/routes/uploadRoute.js:8–10  ·  view source on GitHub ↗
(req, file, cb)

Source from the content-addressed store, hash-verified

6
7const 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 },

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected