frontend/.pnpm-store/v3/files/86/87693665b2f978355c9e855680af92adbd36c9d79ab5d38ea7ff74396258fb5de7f4611d11c3cca6e05247b78da7562e6e75a0b1c7a1889578b7d6df8ff2e3

12 lines
160 B
Plaintext

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