atcheck/lsscanner/new_ubuntu/node_modules_win/to-readable-stream/index.js

12 lines
160 B
JavaScript
Executable File

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