ix
Version:
The Interactive Extensions for JavaScript
11 lines (9 loc) • 379 B
JavaScript
import { IterableReadable } from '../../iterable/tonodestream.mjs';
export function toNodeStream(options) {
return function toNodeStreamOperatorFunction(source) {
return !options || options.objectMode === true
? new IterableReadable(source, options)
: new IterableReadable(source, options);
};
}
//# sourceMappingURL=tonodestream.mjs.map