tech4biz/chat_server/node_modules/to-readable-stream/index.js
2024-10-24 17:20:08 +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);
}
})
);