We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a212646 commit a4bde82Copy full SHA for a4bde82
1 file changed
Conversions/UpperCaseConversion.js
@@ -11,11 +11,11 @@
11
*/
12
13
/**
14
- * UpperCaseConversion takes any case-style string and converts it to the uppercase-style string.
+ * upperCaseConversion takes any case-style string and converts it to the uppercase-style string.
15
* @param {string} inputString Any case style string
16
* @returns {string} Uppercase string
17
18
-const UpperCaseConversion = (inputString) => {
+const upperCaseConversion = (inputString) => {
19
// Take a string and split it into characters.
20
const newString = inputString.split('').map(char => {
21
// Get a character code by the use charCodeAt method.
@@ -32,4 +32,4 @@ const UpperCaseConversion = (inputString) => {
32
return newString.join('')
33
}
34
35
-export { UpperCaseConversion }
+export { upperCaseConversion }
0 commit comments