File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1111*/
1212
1313/**
14- * UpperCaseConversion takes any case-style string and converts it to the uppercase-style string.
14+ * upperCaseConversion takes any case-style string and converts it to the uppercase-style string.
1515 * @param {string } inputString Any case style string
1616 * @returns {string } Uppercase string
1717 */
18- const UpperCaseConversion = ( inputString ) => {
18+ const upperCaseConversion = ( inputString ) => {
1919 // Take a string and split it into characters.
2020 const newString = inputString . split ( '' ) . map ( char => {
2121 // Get a character code by the use charCodeAt method.
@@ -32,4 +32,4 @@ const UpperCaseConversion = (inputString) => {
3232 return newString . join ( '' )
3333}
3434
35- export { UpperCaseConversion }
35+ export { upperCaseConversion }
You can’t perform that action at this time.
0 commit comments