An open API service indexing awesome lists of open source software.

https://github.com/bjornstar/inherit

Prototype inheritance component
https://github.com/bjornstar/inherit

Last synced: 3 months ago
JSON representation

Prototype inheritance component

Awesome Lists containing this project

README

        

# inherit

Prototype inheritance utility.

## Installation

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

## Example

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

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

inherit(Woman, Human);
```

## License

MIT