aboutsummaryrefslogtreecommitdiffhomepage
path: root/node_modules/blob/README.md
blob: 69159558206d17f862bbf18f5477cf97426720c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
Blob
====

A module that exports a constructor that uses window.Blob when available, and a BlobBuilder with any vendor prefix in other cases. If neither is available, it exports undefined.

Usage:

```javascript
var Blob = require('blob');
var b = new Blob(['hi', 'constructing', 'a', 'blob']);
```

## Licence
MIT