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
- Host: GitHub
- URL: https://github.com/montyanderson/get-blob
- Owner: montyanderson
- License: mit
- Created: 2017-07-02T10:44:09.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-07-02T11:28:16.000Z (almost 8 years ago)
- Last Synced: 2025-01-18T00:40:47.809Z (5 months ago)
- Topics: arraybuffer, blob, javascript, node
- Language: JavaScript
- Homepage:
- Size: 1.95 KB
- Stars: 1
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
});
```