traxxx-web/src/media.js

19 lines
330 B
JavaScript
Raw Normal View History

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,
};
}