Skip to content

Instantly share code, notes, and snippets.

View herko's full-sized avatar
💭
I may be slow to respond.

Lubomir Herko herko

💭
I may be slow to respond.
View GitHub Profile
@herko
herko / route.tsx
Created April 11, 2023 19:55 — forked from rphlmr/route.tsx
Remix Supabase Upload
// if you don't plan to upload only images :
/*
async function convertToFile(data: AsyncIterable<Uint8Array>) {
const chunks = [];
for await (const chunk of data) {
chunks.push(chunk);
}
return chunks;
}