given i have the following block of code
(function(){
var mb = {
abc:function(){
//do something
},
xyz:function(width, height, site){
//do something
}
};
})();
how do i make the method mb.abc
accessible from the page, but not mb.xyz
?