OCA_Backend/api/node_modules/to-readable-stream/index.js
2022-01-22 19:06:44 +05:30

12 lines
160 B
JavaScript

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