createReadable function
Creates custom Readable stream with provided options
.
This is the same as callConstructor(stream.Readable, [options]);
.
Implementation
Readable createReadable(ReadableOptions options) {
return callConstructor(stream.Readable, [options]);
}