1.0.3 • Published 7 years ago

blob-to-stream v1.0.3

Weekly downloads
160
License
MIT
Repository
github
Last release
7 years ago

blob-to-stream Build Status NPM Version NPM Downloads

Convert a Blob to a Stream.

install

npm install blob-to-stream

usage

var toStream = require('blob-to-stream')

// Get a Blob somehow...
var blob = new Blob([ new Uint8Array([1, 2, 3]) ], { type: 'application/octet-binary' })

toStream(blob).pipe(/* ... */)

License

MIT

Attribution

Derived from blob-to-buffer