-
Notifications
You must be signed in to change notification settings - Fork 30.6k
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
doc: add print results for examples in WebStreams
#49143
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -248,6 +248,7 @@ const transformedStream = stream.pipeThrough(transform); | |||||
|
||||||
for await (const chunk of transformedStream) | ||||||
console.log(chunk); | ||||||
// Prints A | ||||||
``` | ||||||
|
||||||
```cjs | ||||||
|
@@ -273,6 +274,7 @@ const transformedStream = stream.pipeThrough(transform); | |||||
(async () => { | ||||||
for await (const chunk of transformedStream) | ||||||
console.log(chunk); | ||||||
// Prints A | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
})(); | ||||||
``` | ||||||
|
||||||
|
@@ -1520,6 +1522,7 @@ const dataArray = encoder.encode('hello world from consumers!'); | |||||
const readable = Readable.from(dataArray); | ||||||
const data = await arrayBuffer(readable); | ||||||
console.log(`from readable: ${data.byteLength}`); | ||||||
// Prints from readable: 76 | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
``` | ||||||
|
||||||
```cjs | ||||||
|
@@ -1532,6 +1535,7 @@ const dataArray = encoder.encode('hello world from consumers!'); | |||||
const readable = Readable.from(dataArray); | ||||||
arrayBuffer(readable).then((data) => { | ||||||
console.log(`from readable: ${data.byteLength}`); | ||||||
// Prints from readable: 76 | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
}); | ||||||
``` | ||||||
|
||||||
|
@@ -1553,6 +1557,7 @@ const dataBlob = new Blob(['hello world from consumers!']); | |||||
const readable = dataBlob.stream(); | ||||||
const data = await blob(readable); | ||||||
console.log(`from readable: ${data.size}`); | ||||||
// Prints from readable: 27 | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
``` | ||||||
|
||||||
```cjs | ||||||
|
@@ -1563,6 +1568,7 @@ const dataBlob = new Blob(['hello world from consumers!']); | |||||
const readable = dataBlob.stream(); | ||||||
blob(readable).then((data) => { | ||||||
console.log(`from readable: ${data.size}`); | ||||||
// Prints from readable: 27 | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
}); | ||||||
``` | ||||||
|
||||||
|
@@ -1586,6 +1592,7 @@ const dataBuffer = Buffer.from('hello world from consumers!'); | |||||
const readable = Readable.from(dataBuffer); | ||||||
const data = await buffer(readable); | ||||||
console.log(`from readable: ${data.length}`); | ||||||
// Prints from readable: 27 | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
``` | ||||||
|
||||||
```cjs | ||||||
|
@@ -1598,6 +1605,7 @@ const dataBuffer = Buffer.from('hello world from consumers!'); | |||||
const readable = Readable.from(dataBuffer); | ||||||
buffer(readable).then((data) => { | ||||||
console.log(`from readable: ${data.length}`); | ||||||
// Prints from readable: 27 | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
}); | ||||||
``` | ||||||
|
||||||
|
@@ -1627,6 +1635,7 @@ const items = Array.from( | |||||
const readable = Readable.from(JSON.stringify(items)); | ||||||
const data = await json(readable); | ||||||
console.log(`from readable: ${data.length}`); | ||||||
// Prints from readable: 100 | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
``` | ||||||
|
||||||
```cjs | ||||||
|
@@ -1645,6 +1654,7 @@ const items = Array.from( | |||||
const readable = Readable.from(JSON.stringify(items)); | ||||||
json(readable).then((data) => { | ||||||
console.log(`from readable: ${data.length}`); | ||||||
// Prints from readable: 100 | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
}); | ||||||
``` | ||||||
|
||||||
|
@@ -1665,6 +1675,7 @@ import { Readable } from 'node:stream'; | |||||
const readable = Readable.from('Hello world from consumers!'); | ||||||
const data = await text(readable); | ||||||
console.log(`from readable: ${data.length}`); | ||||||
// Prints from readable: 27 | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
``` | ||||||
|
||||||
```cjs | ||||||
|
@@ -1674,6 +1685,7 @@ const { Readable } = require('node:stream'); | |||||
const readable = Readable.from('Hello world from consumers!'); | ||||||
text(readable).then((data) => { | ||||||
console.log(`from readable: ${data.length}`); | ||||||
// Prints from readable: 27 | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
}); | ||||||
``` | ||||||
|
||||||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.