All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 35s
8 lines
101 B
JavaScript
8 lines
101 B
JavaScript
'use strict'
|
|
|
|
module.exports = normalize
|
|
|
|
function normalize(value) {
|
|
return value.toLowerCase()
|
|
}
|