docs/api/vinyl-isvinyl.md
Determines if an object is a Vinyl instance. Use this method instead of instanceof.
Note: This method uses an internal property that some older versions of Vinyl didn't expose resulting in a false negative if using an outdated version.
const Vinyl = require('vinyl');
const file = new Vinyl();
const notAFile = {};
Vinyl.isVinyl(file) === true;
Vinyl.isVinyl(notAFile) === false;
Vinyl.isVinyl(file);
| parameter | type | note |
|---|---|---|
| file | object | The object to check. |
True if the file object is a Vinyl instance.