An open API service indexing awesome lists of open source software.

https://github.com/montyanderson/get-blob

Get a Blob and return an ArrayBuffer using FileReader
https://github.com/montyanderson/get-blob

arraybuffer blob javascript node

Last synced: 4 months ago
JSON representation

Get a Blob and return an ArrayBuffer using FileReader

Awesome Lists containing this project

README

        

# get-blob

Get a `Blob` and return an `ArrayBuffer` using `FileReader`

``` javascript
const getBlob = require("get-blob");

getBlob(blob).then(buffer => {
// hurrah
});
```