D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
lib
/
node_modules
/
gulp
/
node_modules
/
vinyl
/
lib
/
Filename :
is-stream.js
back
Copy
'use strict'; function isStream(stream) { if (!stream) { return false; } if (typeof stream.pipe !== 'function') { return false; } return true; } module.exports = isStream;