twitst4tz

twitter statistics web application
Log | Files | Refs | README | LICENSE

README.md (326B)


      1 # Blob
      2 
      3 A cross-browser `Blob` that falls back to `BlobBuilder` when appropriate.
      4 If neither is available, it exports `undefined`.
      5 
      6 ## Installation
      7 
      8 ``` bash
      9 $ npm install blob
     10 ```
     11 
     12 ## Example
     13 
     14 ``` js
     15 var Blob = require('blob');
     16 var b = new Blob(['hi', 'constructing', 'a', 'blob']);
     17 ```
     18 
     19 ## License
     20 
     21 MIT