Model/packages/字体精简工具/node_modules/buffer-to-vinyl
2024-08-28 11:12:05 +08:00
..
index.js 模板更新,更新了埋点上传失败3次上传,5秒10秒15秒,更新了更改分享链接和分享内容,增加了scode 2024-08-28 11:12:05 +08:00
license 模板更新,更新了埋点上传失败3次上传,5秒10秒15秒,更新了更改分享链接和分享内容,增加了scode 2024-08-28 11:12:05 +08:00
package.json 模板更新,更新了埋点上传失败3次上传,5秒10秒15秒,更新了更改分享链接和分享内容,增加了scode 2024-08-28 11:12:05 +08:00
readme.md 模板更新,更新了埋点上传失败3次上传,5秒10秒15秒,更新了更改分享链接和分享内容,增加了scode 2024-08-28 11:12:05 +08: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