Convert a Vinyl file to a VFile
npm install convert-vinyl-to-vfile  
> Convert a Vinyl file to a VFile
npm install --save convert-vinyl-to-vfile
`Usage
`javascript
const convertVinylToVfile = require('convert-vinyl-to-vfile')
const {join} = require('path');
const VFile = require('vfile');
const Vinyl = require('vinyl');const vinylFile = new Vinyl({
contents: Buffer.from('abe lincoln'),
path: join('users', 'dustin', 'project', 'awesome.project.md')
});
const vfile = convertVinylToVfile(vinylFile);
/* =>
* new VFile({
* contents: ,
* path: 'users/dustin/project/awesome.project.md'
* })
*/
vfile instanceof VFile;
// => true
``