aozhiwei 0a973d12e3 1
2022-01-27 17:32:21 +08:00

12 lines
160 B
JavaScript

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