aboutsummaryrefslogtreecommitdiffhomepage
path: root/node_modules/component-inherit/Readme.md
blob: f03ab279fffa37849bd672a12c1c3aa011f29301 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# inherit

  Prototype inheritance utility.

## Installation

```
$ component install component/inherit
```

## Example

```js
var inherit = require('inherit');

function Human() {}
function Woman() {}

inherit(Woman, Human);
```

## License

  MIT