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?
}
You can consume the request's body as an array buffer using the .arrayBuffer()
method.