You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+5-1Lines changed: 5 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -27,7 +27,9 @@ The result of [require][13] is a 'function' that when invoked, will return a [Re
27
27
var streamify = require('stream-array');
28
28
```
29
29
30
-
The Array passed into stream-array() can contain any type, as it assumes the receiving stream can handle it. Each element will be dequeued and pushed into the following piped stream.
30
+
The source array can contain any type as it is assumed that the receiving
31
+
stream can handle it. Each element in the array will be [pushed][14] into the
32
+
[piped][15] stream, **without** modifying the source array.
31
33
32
34
```
33
35
var readable = streamify(['Hello', new Buffer('World')]);
0 commit comments