1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
| var concat = require('concat-stream')
|
| function MemoryStorage (opts) {}
|
| MemoryStorage.prototype._handleFile = function _handleFile (req, file, cb) {
| file.stream.pipe(concat({ encoding: 'buffer' }, function (data) {
| cb(null, {
| buffer: data,
| size: data.length
| })
| }))
| }
|
| MemoryStorage.prototype._removeFile = function _removeFile (req, file, cb) {
| delete file.buffer
| cb(null)
| }
|
| module.exports = function (opts) {
| return new MemoryStorage(opts)
| }
|
|