We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
https://github.com/wicg/compression/blob/master/explainer.md#deflate-compress-an-arraybuffer-to-a-uint8array
It could be:
function compressArrayBuffer(input) { const stream = new Blob(input) .stream() .pipeThrough(new CompressionStream('deflate')); return new Response(stream).arrayBuffer(); }
I guess it's a little hacky, but the following example already uses blob/response, so maybe it's ok?
The text was updated successfully, but these errors were encountered:
PR #30
Sorry, something went wrong.
3705d4c
No branches or pull requests
https://github.com/wicg/compression/blob/master/explainer.md#deflate-compress-an-arraybuffer-to-a-uint8array
It could be:
I guess it's a little hacky, but the following example already uses blob/response, so maybe it's ok?
The text was updated successfully, but these errors were encountered: