UNPKG

blob

Version:

Abstracts out Blob and uses BlobBulder in cases where it is supported with any vendor prefix.

22 lines (14 loc) 326 B
# Blob A cross-browser `Blob` that falls back to `BlobBuilder` when appropriate. If neither is available, it exports `undefined`. ## Installation ``` bash $ npm install blob ``` ## Example ``` js var Blob = require('blob'); var b = new Blob(['hi', 'constructing', 'a', 'blob']); ``` ## License MIT