Core Docs | Additional Modules Docs
var boy = {
name : 'paul'
};
var otherBoy : {
eats : function(){
alert('yum');
}
}
//copies eat function to boy object
sb.objects.infuse(otherBoy, boy);
//or with globals enabled
boy.infuse(otherBoy);