Parsing `multipart/form-data` in Memory Without FileSystem Access on Vercel
I would like to use
HttpServer.request.schemaBodyMultipart to parse a multipart/form-data body, however, it seems to have a dependency on a FileSystem layer. I don't want or can provide that as I want to just keep the form data (which might also include some actual uploaded files) in memory as I handle them, plus, my code is running on Vercel, which doesn't give (write) access to the file system. How would I otherwise be able to extract the form data from my body?