Skip to content

Instantly share code, notes, and snippets.

View ravenac95's full-sized avatar
💭
🎶

Reuven Gonzales ravenac95

💭
🎶
View GitHub Profile
@kof
kof / inherits.js
Created March 24, 2011 13:10
nodejs like utility method for inheritance
/**
* Inherit prototype properties
* @param {Function} ctor
* @param {Function} superCtor
*/
_.mixin({
inherits: (function(){
function noop(){}
function ecma3(ctor, superCtor) {