blob: 64b960f92b49955eef2d1d3dcca2182604a57a84 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
'use strict';
const common = require('../common');
const assert = require('assert');
const { Readable, Writable, Transform } = require('stream');
{
const stream = new Readable({
objectMode: true,
read: common.mustCall(() => {
stream.push(undefined);
stream.push(null);
})
});
stream.on('data', common.mustCall((chunk) => {
assert.strictEqual(chunk, undefined);
}));
}
{
const stream = new Writable({
objectMode: true,
write: common.mustCall((chunk) => {
assert.strictEqual(chunk, undefined);
})
});
stream.write(undefined);
}
{
const stream = new Transform({
objectMode: true,
transform: common.mustCall((chunk) => {
stream.push(chunk);
})
});
stream.on('data', common.mustCall((chunk) => {
assert.strictEqual(chunk, undefined);
}));
stream.write(undefined);
}
|