6 lines
108 B
JavaScript
6 lines
108 B
JavaScript
|
|
function helperStringUpperCase (str) {
|
||
|
|
return str.toUpperCase()
|
||
|
|
}
|
||
|
|
|
||
|
|
module.exports = helperStringUpperCase
|