Files
30-seconds-of-code/test/isStream/isStream.js
Angelos Chalaris 474aaffbbf Add isStream
2018-10-01 20:12:19 +03:00

3 lines
126 B
JavaScript

const isStream = val => val !== null && typeof val === 'object' && typeof val.pipe === 'function';
module.exports = isStream;