what is the correct starting case for functions and properties when using the revealing module pattern? I have it shown here with lower case for function and uppercase for properties but that does not feel correct.
return {
getRecords: getRecords, // this is a function
CurrentTitle: getCurrentRecord().title // this is a title
};