You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
315 B

7 years ago
  1. Blob
  2. ====
  3. 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.
  4. Usage:
  5. ```javascript
  6. var Blob = require('blob');
  7. var b = new Blob(['hi', 'constructing', 'a', 'blob']);
  8. ```
  9. ## Licence
  10. MIT