Created
March 24, 2011 13:10
-
-
Save kof/885027 to your computer and use it in GitHub Desktop.
nodejs like utility method for inheritance
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Inherit prototype properties | |
* @param {Function} ctor | |
* @param {Function} superCtor | |
*/ | |
_.mixin({ | |
inherits: (function(){ | |
function noop(){} | |
function ecma3(ctor, superCtor) { | |
noop.prototype = superCtor.prototype; | |
ctor.prototype = new noop; | |
ctor.prototype.constructor = superCtor; | |
} | |
function ecma5(ctor, superCtor) { | |
ctor.prototype = Object.create(superCtor.prototype, { | |
constructor: { value: ctor, enumerable: false } | |
}); | |
} | |
return Object.create ? ecma5 : ecma3; | |
}()) | |
}); |
I just discovered https://github.com/isaacs/inherits, which has an identical implementation to my fork of this gist but should be preferred because it is in a github repo, is maintained and is used by browserify.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
FYI, there's a bug here (found by @Suor in rockdai/sql-bricks#54). Line 13 should be
ctor.prototype.constructor = ctor;
This is fixed on my fork (I also addedsuper_
and included a performance improvement from nodejs/node-v0.x-archive@1ba2c321)