Questionnaire-of-the-Facebo.../node_modules/to-readable-stream/index.js

12 lines
160 B
JavaScript
Raw Normal View History

2021-03-11 01:43:28 +00:00
'use strict';
const {Readable} = require('stream');
module.exports = input => (
new Readable({
read() {
this.push(input);
this.push(null);
}
})
);