1 2 3 4 5 6 7 8 9 10 11 12 13 14 | 1× 1× 315× 315× 1× 1× | "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); // in Node, we store the buffer directly function prepareAttachmentForStorage(attData, cb) { process.nextTick(function () { cb(attData); }); } exports.default = prepareAttachmentForStorage; module.exports = exports['default']; |