inherit-class

util.inherits without the cruft

MIT License

Downloads
9
Stars
4

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.