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