Created
March 24, 2011 13:10
Revisions
-
kof created this gist
Mar 24, 2011 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,24 @@ /** * 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; }()) });