Skip to content

Commit

Permalink
Add bytes() method for reading bytes into a Uint8Array (#198)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcoscaceres committed May 24, 2024
1 parent 5f1f9f5 commit 85b18bc
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions index.bs
Original file line number Diff line number Diff line change
Expand Up @@ -300,6 +300,7 @@ interface Blob {
[NewObject] ReadableStream stream();
[NewObject] Promise<USVString> text();
[NewObject] Promise<ArrayBuffer> arrayBuffer();
[NewObject] Promise<Uint8Array> bytes();
};

enum EndingType { "transparent", "native" };
Expand Down Expand Up @@ -632,6 +633,17 @@ The <dfn method for=Blob>arrayBuffer()</dfn> method, when invoked, must run thes
1. Return the result of transforming |promise| by a fulfillment handler that returns
a new {{ArrayBuffer}} whose contents are its first argument.

### The {{Blob/bytes()}} method ### {#bytes-method-algo}

The <dfn method for=Blob>bytes()</dfn> method, when invoked, must run these steps:

1. Let |stream| be the result of calling [=get stream=] on [=this=].
1. Let |reader| be the result of [=get a reader|getting a reader=] from |stream|.
If that threw an exception, return a new promise rejected with that exception.
1. Let |promise| be the result of [=read all bytes|reading all bytes=] from |stream| with |reader|.
1. Return the result of transforming |promise| by a fulfillment handler that returns
a new {{Uint8Array}} wrapping an {{ArrayBuffer}} containing its first argument.

<!--
████████ ████ ██ ████████
██ ██ ██ ██
Expand Down

0 comments on commit 85b18bc

Please sign in to comment.