inherit-class

util.inherits without the cruft


Keywords
inherits, node, es5, js, extend, extends, class, inheritance, inherited, util, browser
License
MIT
Install
npm install inherit-class@1.0.1

Documentation

inherit-class

frozen

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

NPM

inherits(class, superClass)

Overrides the prototype of class so that it inherits from superClass.

License

MIT, see LICENSE.md for details.