blob: 04882b497ac559c43702107ded67f19ed390c366 [file] [log] [blame]
Leo Repp58b9f112021-11-22 11:57:47 +01001'use strict';
2
3function isStream(stream) {
4 if (!stream) {
5 return false;
6 }
7
8 if (typeof stream.pipe !== 'function') {
9 return false;
10 }
11
12 return true;
13}
14
15module.exports = isStream;