(stream)
| 1766 | } |
| 1767 | |
| 1768 | function endWritableNT(stream) { |
| 1769 | const writable = stream.writable && !stream.writableEnded && |
| 1770 | !stream.destroyed; |
| 1771 | if (writable) { |
| 1772 | stream.end(); |
| 1773 | } |
| 1774 | } |
| 1775 | |
| 1776 | Readable.from = function(iterable, opts) { |
| 1777 | return from(Readable, iterable, opts); |
nothing calls this directly
no test coverage detected
searching dependent graphs…