I've been using res.sendFile to serve files using NodeJS such as
res.sendFile(path.resolve(fullpath))
but I want to return an array of the same. Something like
res.sendFile([path.resolve(fullpath),path.resolve(fullpath)])
but this returns an error.
How can I return an array of files?