aboutsummaryrefslogtreecommitdiff
path: root/node_modules/to-readable-stream/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/to-readable-stream/index.js')
-rw-r--r--node_modules/to-readable-stream/index.js11
1 files changed, 0 insertions, 11 deletions
diff --git a/node_modules/to-readable-stream/index.js b/node_modules/to-readable-stream/index.js
deleted file mode 100644
index 554bfa5..0000000
--- a/node_modules/to-readable-stream/index.js
+++ /dev/null
@@ -1,11 +0,0 @@
-'use strict';
-const {Readable} = require('stream');
-
-module.exports = input => (
- new Readable({
- read() {
- this.push(input);
- this.push(null);
- }
- })
-);