1.0.1 • Published 10 years ago

vinyl-to-stream v1.0.1

Weekly downloads
4
License
MIT
Repository
github
Last release
10 years ago

vinyl-to-stream Build Status

Convert a vinyl stream to a text stream

Install

$ npm install --save vinyl-to-stream

Usage

var fs = require('fs');
var vfs = require('vinyl-fs');
var vinylToStream = require('vinyl-to-stream');

vfs.src('foo.html')
	.pipe(vinylToStream())
	.pipe(fs.createWriteStream('bar.html'));

License

MIT © Kevin Mårtensson