UNPKG

recoder-code

Version:

🚀 AI-powered development platform - Chat with 32+ models, build projects, automate workflows. Free models included!

22 lines (17 loc) • 475 B
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) }