summaryrefslogtreecommitdiff
path: root/bin/wiki/ImportarDesdeURL/node_modules/to-readable-stream/index.js
blob: 554bfa5f9915e8df60a5fd0963079950c983ef84 (plain)
1
2
3
4
5
6
7
8
9
10
11
'use strict';
const {Readable} = require('stream');

module.exports = input => (
	new Readable({
		read() {
			this.push(input);
			this.push(null);
		}
	})
);