We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6eac50d commit a47c857Copy full SHA for a47c857
docs/transports.md
@@ -150,7 +150,7 @@ export default async function (opts) {
150
151
return build(async function (source) {
152
for await (let obj of source) {
153
- const toDrain = !destination.write(obj.message.toUpperCase() + '\n')
+ const toDrain = !destination.write(obj.msg.toUpperCase() + '\n')
154
// This block will handle backpressure
155
if (toDrain) {
156
await once(destination, 'drain')
0 commit comments