WUT_Computer_Science/EGUI/lab3/api/node_modules/to-readable-stream/index.js
2022-06-15 05:26:01 +02:00

12 lines
160 B
JavaScript

'use strict';
const {Readable} = require('stream');
module.exports = input => (
new Readable({
read() {
this.push(input);
this.push(null);
}
})
);