Feuerwehr-eppingen/node_modules/buffer-to-vinyl
2020-06-04 13:20:10 +02:00
..
node_modules Umzug auf Synology NAS 2020-06-04 13:20:10 +02:00
index.js Umzug auf Synology NAS 2020-06-04 13:20:10 +02:00
license Umzug auf Synology NAS 2020-06-04 13:20:10 +02:00
package.json Umzug auf Synology NAS 2020-06-04 13:20:10 +02:00
readme.md Umzug auf Synology NAS 2020-06-04 13:20:10 +02:00

buffer-to-vinyl Build Status

Create a vinyl file or stream from a buffer

Install

$ npm install --save buffer-to-vinyl

Usage

var bufferToVinyl = require('buffer-to-vinyl');
var fs = require('fs');

bufferToVinyl.file(fs.readFileSync('foo.jpg', null));
bufferToVinyl.stream(fs.readFileSync('foo.jpg', null));

API

.file(buf, [name])

Creates a vinyl file.

.stream(buf, [name])

Creates a object stream.

License

MIT © Kevin Mårtensson