Skip to content
New issue

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

Compress arraybuffer example #29

Closed
jakearchibald opened this issue Feb 17, 2020 · 1 comment
Closed

Compress arraybuffer example #29

jakearchibald opened this issue Feb 17, 2020 · 1 comment

Comments

@jakearchibald
Copy link
Contributor

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?

@jakearchibald
Copy link
Contributor Author

PR #30

@ricea ricea closed this as completed in 3705d4c Feb 18, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

No branches or pull requests

1 participant