-
-
Save plugn/4605188 to your computer and use it in GitHub Desktop.
This file contains hidden or 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; | |
}()) | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment