https://github.com/component/inherit
https://github.com/component/inherits
https://github.com/component/inherit
Last synced: 8 months ago
JSON representation
https://github.com/component/inherits
- Host: GitHub
- URL: https://github.com/component/inherit
- Owner: component
- License: mit
- Created: 2012-08-08T17:16:08.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2015-03-24T04:05:56.000Z (about 11 years ago)
- Last Synced: 2024-12-11T08:08:37.257Z (over 1 year ago)
- Language: JavaScript
- Homepage: https://github.com/component/inherits
- Size: 164 KB
- Stars: 16
- Watchers: 4
- Forks: 11
- Open Issues: 2
-
Metadata Files:
- Readme: Readme.md
- Changelog: History.md
- License: LICENSE
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