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.

пре 3 година
123456789101112131415161718192021
  1. # Blob
  2. A cross-browser `Blob` that falls back to `BlobBuilder` when appropriate.
  3. If neither is available, it exports `undefined`.
  4. ## Installation
  5. ``` bash
  6. $ npm install blob
  7. ```
  8. ## Example
  9. ``` js
  10. var Blob = require('blob');
  11. var b = new Blob(['hi', 'constructing', 'a', 'blob']);
  12. ```
  13. ## License
  14. MIT