Further Drupal 8.6.4 changes. Some core files were not committed before a commit...
[yaffs-website] / node_modules / vinyl / lib / isStream.js
1 var Stream = require('stream').Stream;
2
3 module.exports = function(o) {
4   return !!o && o instanceof Stream;
5 };