I want to consume data sent through a put request in a web worker. How would I do so?
this the part in my code where I am trying to handle the put request
if (method === 'put') {
var request = event.request;
//how would I turn the request object into an array buffer?
}
from How would I consume the body of a put request from a web worker
No comments:
Post a Comment