mirror of
https://github.com/anatolykopyl/vk-nft-feed.git
synced 2026-03-26 04:44:34 +00:00
12 lines
282 B
JavaScript
12 lines
282 B
JavaScript
export default function(post) {
|
|
const photoAttachments = post.attachments.filter((attachment) => {
|
|
return attachment.photo;
|
|
})
|
|
|
|
const images = photoAttachments.map((attachment) =>
|
|
attachment.photo.sizes[attachment.photo.sizes.length - 1].url
|
|
);
|
|
|
|
return images;
|
|
}
|