Files
AirHockey/node_modules/component-inherit/Readme.md
Owen LeJeune dfa77bc52a first commit
2018-03-07 17:18:40 -05:00

25 lines
249 B
Markdown

# inherit
Prototype inheritance utility.
## Installation
```
$ component install component/inherit
```
## Example
```js
var inherit = require('inherit');
function Human() {}
function Woman() {}
inherit(Woman, Human);
```
## License
MIT