nodejs/test/parallel/test-stream-readable-data.js

20 lines
369 B
JavaScript
Raw Normal View History

2022-08-16 11:12:47 +08:00
'use strict';
const common = require('../common');
const { Readable } = require('stream');
const readable = new Readable({
read() {}
});
function read() {}
readable.setEncoding('utf8');
readable.on('readable', read);
readable.removeListener('readable', read);
process.nextTick(function() {
readable.on('data', common.mustCall());
readable.push('hello');
});