arshjaved's picture
normal Model Upload (teja)
f9f1a35 verified
raw
history blame contribute delete
146 Bytes
module.exports = function(a, b){
var fn = function(){};
fn.prototype = b.prototype;
a.prototype = new fn;
a.prototype.constructor = a;
};