We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a120c51 commit ffafc3eCopy full SHA for ffafc3e
README.md
@@ -1,30 +1,21 @@
1
-Blob
2
-====
3
-
4
-A module that exports a constructor that uses `window.Blob` when available,
5
-and a `BlobBuilder` with any vendor prefix in other cases.
+# Blob
6
+A cross-browser `Blob` that falls back to `BlobBuilder` when appropriate.
7
If neither is available, it exports `undefined`.
8
9
10
-Installation
11
-------------
+## Installation
12
13
``` bash
14
$ npm install blob
15
```
16
17
18
-Example
19
--------
+## Example
20
21
``` js
22
var Blob = require('blob');
23
var b = new Blob(['hi', 'constructing', 'a', 'blob']);
24
25
26
27
-License
28
+## License
29
30
MIT
0 commit comments