You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

is-stream.js 194B

123456789101112131415
  1. 'use strict';
  2. function isStream(stream) {
  3. if (!stream) {
  4. return false;
  5. }
  6. if (typeof stream.pipe !== 'function') {
  7. return false;
  8. }
  9. return true;
  10. }
  11. module.exports = isStream;