You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Support new constructor() syntax
* Apply insignificant IDL updates
* Fix bad merge
* fix further typo
* Minor fixes
1. Fix recurring formatting cut-paste error.
2. Update baseline from bad merge (I think?).
Co-authored-by: Nathan Shively-Sanders <293473+sandersn@users.noreply.github.com>
* Returns a writable stream which accepts BufferSource chunks and runs them through encoding's decoder before making them available to readable.
5759
+
* Returns a writable stream which accepts [AllowShared] BufferSource chunks and runs them through encoding's decoder before making them available to readable.
5760
5760
*
5761
5761
* Typically this will be used via the pipeThrough() method on a ReadableStream source.
* Returns a writable stream which accepts BufferSource chunks and runs them through encoding's decoder before making them available to readable.
1632
+
* Returns a writable stream which accepts [AllowShared] BufferSource chunks and runs them through encoding's decoder before making them available to readable.
1633
1633
*
1634
1634
* Typically this will be used via the pipeThrough() method on a ReadableStream source.
Copy file name to clipboardExpand all lines: inputfiles/idl/Encoding.commentmap.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,6 @@
10
10
"textencoder-encodeinto": "Runs the UTF-8 encoder on source, stores the result of that operation into destination, and returns the progress made as a dictionary whereby read is the number of converted code units of source and written is the number of bytes modified in destination.",
11
11
"textdecoderstream": "Returns a new TextDecoderStream object.\n\nIf label is either not a label or is a label for replacement, throws a RangeError.",
12
12
"generictransformstream-readable": "Returns a readable stream whose chunks are strings resulting from running encoding's decoder on the chunks written to writable.",
13
-
"generictransformstream-writable": "Returns a writable stream which accepts BufferSource chunks and runs them through encoding's decoder before making them available to readable.\n\nTypically this will be used via the pipeThrough() method on a ReadableStream source.\n\n```\nvar decoder = new TextDecoderStream(encoding);\nbyteReadable\n .pipeThrough(decoder)\n .pipeTo(textWritable);\n```\n\nIf the error mode is \"fatal\" and encoding's decoder returns error, both readable and writable will be errored with a TypeError.",
13
+
"generictransformstream-writable": "Returns a writable stream which accepts [AllowShared] BufferSource chunks and runs them through encoding's decoder before making them available to readable.\n\nTypically this will be used via the pipeThrough() method on a ReadableStream source.\n\n```\nvar decoder = new TextDecoderStream(encoding);\nbyteReadable\n .pipeThrough(decoder)\n .pipeTo(textWritable);\n```\n\nIf the error mode is \"fatal\" and encoding's decoder returns error, both readable and writable will be errored with a TypeError.",
14
14
"textencoderstream": "Returns a new TextEncoderStream object."
0 commit comments