use directories for structure
This commit is contained in:
15
node_modules/vinyl/lib/is-stream.js
generated
vendored
Normal file
15
node_modules/vinyl/lib/is-stream.js
generated
vendored
Normal file
@@ -0,0 +1,15 @@
|
||||
'use strict';
|
||||
|
||||
function isStream(stream) {
|
||||
if (!stream) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if (typeof stream.pipe !== 'function') {
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
module.exports = isStream;
|
Reference in New Issue
Block a user