inherit-class
v1.0.1
Published
util.inherits without the cruft
Downloads
28
Maintainers
Readme
inherit-class
Like util.inherits but without any cruft. Aimed at ES5 (IE 10+), does not pollute classes with super_
, and uses the same code path in Node and the browser.
Example
var inherits = require('inherit-class')
function MyClass() {
BaseClass.call(this)
}
inherits(MyClass, BaseClass)
Install
npm install inherit-class --save
Usage
inherits(class, superClass)
Overrides the prototype of class
so that it inherits from superClass
.
License
MIT, see LICENSE.md for details.