sonia-js/node_modules/to-readable-stream/index.js
2023-03-30 09:45:31 +00:00

11 lines
160 B
JavaScript

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