8 lines
126 B
JavaScript
8 lines
126 B
JavaScript
'use strict'
|
|
|
|
module.exports = normalize
|
|
|
|
function normalize(value) {
|
|
return value.toLowerCase().replace(/\b[:-]\b/g, '')
|
|
}
|