1.0.1 • Published 9 years ago

inherit-class v1.0.1

Weekly downloads
5
License
MIT
Repository
github
Last release
9 years ago

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.