Files
status/node_modules/to-readable-stream/index.js
2020-08-14 17:18:53 +03:00

12 lines
160 B
JavaScript

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