mirror of https://gitee.com/openkylin/nodejs.git
20 lines
369 B
JavaScript
20 lines
369 B
JavaScript
'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');
|
|
});
|