Update function name casing to match convention

This commit is contained in:
Charlie Moore
2021-10-04 09:52:10 -04:00
parent 199d2637cc
commit 90a59e6b60

View File

@ -7,7 +7,7 @@
* @param {String} inputString input string
* @returns {String}
*/
const TitleCaseConversion = (inputString) => {
const titleCaseConversion = (inputString) => {
// Extact all space seprated string.
const stringCollections = inputString.split(' ').map(word => {
let firstChar = ''