]> Untitled Git - lemmy-ui.git/blob - src/server/utils/fetch-icon-png.ts
fix: Add post body preview to desktop post listing view
[lemmy-ui.git] / src / server / utils / fetch-icon-png.ts
1 export async function fetchIconPng(iconUrl: string) {
2   return await fetch(iconUrl)
3     .then(res => res.blob())
4     .then(blob => blob.arrayBuffer());
5 }