Replies: 1 comment
-
Bun.file is a |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I have a very large file, and I want to read its contents at a specific positions.
bunFile.arrayBuffer()
will try to load the full file content in memorybunFile.stream()
forces me to read the contents of the file sequentially (and I have to restart if I want to reach an upstream position).How can I do this with the bun API?
Beta Was this translation helpful? Give feedback.
All reactions