retrohacker / blob-to-stream

Convert a blob to a stream!
MIT License
4 stars 1 forks source link

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