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

feat: slicing a Blob #26

Open
grabbou opened this issue Nov 8, 2024 · 0 comments
Open

feat: slicing a Blob #26

grabbou opened this issue Nov 8, 2024 · 0 comments

Comments

@grabbou
Copy link
Collaborator

grabbou commented Nov 8, 2024

Previous implementation of Blob was naive, because it sliced everything in memory, assuming contents were already loaded. In reality, Blob arrayBuffer() or bytes() are async and lazy. However, slice is synchronous.

We should implement something similar to a BlobView that gets created as a subclass of a Blob, holds information about offset/length of a slice and will still ready full underlying stream(), but return its slice.

Here, it might be relevant to implement seeking a stream (as discussed with @mani3xis)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant