Files
bsky-social-app/src/lib/media/uriSize.web.ts
T

6 lines
159 B
TypeScript

export async function getUriSize(uri: string): Promise<number> {
const response = await fetch(uri)
const blob = await response.blob()
return blob.size
}