first commit

This commit is contained in:
Owen LeJeune
2018-03-07 17:18:40 -05:00
commit dfa77bc52a
403 changed files with 52076 additions and 0 deletions

14
node_modules/blob/README.md generated vendored Normal file
View File

@@ -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