After defining the module, you will need to do the following:
Module.Utils = Module.Utils || {};
Module.Utils.C = function(){
console.log("C");
};
The first line checks if Module.Utils is already defined and determines if it is not. The next part then assigns function C.
Module.Utils.C = function(){ console.log("C"); };, "Module.Utils" undefined.
, , : http://jsfiddle.net/u5R4E/