Sign in
cobalt
/
cobalt.git
/
f9bc0139df6e6eb149345ab9b6ffcc40603fc09f
/
.
/
third_party
/
devtools
/
node_modules
/
component-inherit
/
index.js
blob: aaebc03ba7e848b81df65da3b5c16169fc5501ee [
file
]
module
.
exports
=
function
(
a
,
b
){
var
fn
=
function
(){};
fn
.
prototype
=
b
.
prototype
;
a
.
prototype
=
new
fn
;
a
.
prototype
.
constructor
=
a
;
};