twitst4tz

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

Readme.md (249B)


      1 # inherit
      2 
      3   Prototype inheritance utility.
      4 
      5 ## Installation
      6 
      7 ```
      8 $ component install component/inherit
      9 ```
     10 
     11 ## Example
     12 
     13 ```js
     14 var inherit = require('inherit');
     15 
     16 function Human() {}
     17 function Woman() {}
     18 
     19 inherit(Woman, Human);
     20 ```
     21 
     22 ## License
     23 
     24   MIT