aboutsummaryrefslogtreecommitdiffhomepage
path: root/node_modules/blob/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/blob/README.md')
-rw-r--r--node_modules/blob/README.md14
1 files changed, 14 insertions, 0 deletions
diff --git a/node_modules/blob/README.md b/node_modules/blob/README.md
new file mode 100644
index 0000000..6915955
--- /dev/null
+++ b/node_modules/blob/README.md
@@ -0,0 +1,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