Describes return data in the format.
/**
* Capitalizes a string
* @param {String} s the string to be lowercased.
* @return {String} a string with the first character capitalized, and everything else lowercased
*/
capitalize: function( s, cache ) {
return s.charAt(0).toUpperCase() + s.substr(1);
}