diff options
Diffstat (limited to 'components/script_bindings/webidls/ReadableStream.webidl')
-rw-r--r-- | components/script_bindings/webidls/ReadableStream.webidl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script_bindings/webidls/ReadableStream.webidl b/components/script_bindings/webidls/ReadableStream.webidl index 12798262953..4ec190bd911 100644 --- a/components/script_bindings/webidls/ReadableStream.webidl +++ b/components/script_bindings/webidls/ReadableStream.webidl @@ -20,8 +20,8 @@ interface _ReadableStream { [Throws] ReadableStreamReader getReader(optional ReadableStreamGetReaderOptions options = {}); - // [Throws] - // ReadableStream pipeThrough(ReadableWritablePair transform, optional StreamPipeOptions options = {}); + [Throws] + ReadableStream pipeThrough(ReadableWritablePair transform, optional StreamPipeOptions options = {}); [NewObject] Promise<undefined> pipeTo(WritableStream destination, optional StreamPipeOptions options = {}); |