'use strict'; module.exports = function readAsBlobOrBuffer(storedObject, type) { // In Node, we've stored a buffer storedObject.type = type; // non-standard, but used for consistency return storedObject; };