https://github.com/bjornstar/inherit
Prototype inheritance component
https://github.com/bjornstar/inherit
Last synced: 3 months ago
JSON representation
Prototype inheritance component
- Host: GitHub
- URL: https://github.com/bjornstar/inherit
- Owner: bjornstar
- Fork: true (component/inherit)
- Created: 2014-11-27T10:07:49.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2019-04-05T01:53:25.000Z (about 6 years ago)
- Last Synced: 2024-04-15T12:19:29.555Z (about 1 year ago)
- Language: JavaScript
- Size: 4.88 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
- Changelog: History.md
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