(s)
| 391 | } |
| 392 | |
| 393 | function isStream (s) { |
| 394 | return s && typeof s === 'object' && typeof s.pipe === 'function'; |
| 395 | } |
| 396 | |
| 397 | function wrapStream (s) { |
| 398 | if (typeof s.read === 'function') return s |
no outgoing calls
no test coverage detected
searching dependent graphs…