export function curateMedia(media, context = {}) { if (!media) { return null; } return { id: media.id, path: media.path, thumbnail: media.thumbnail, lazy: media.lazy, isS3: media.is_s3, width: media.width, height: media.height, index: media.index, credit: media.credit, type: context.type || null, }; }