textFormater : function(text){
//some code
},
loginForm : function(){
//jQuery
$("onClickBtn").click(function(){
var text = textFormater("SomeText"); //Uncaught ReferenceError: textFormater is not defined
});
}