blob: 7057c0a1e5e737f7d2fe5d6aacd309759480bef7 [file] [log] [blame]
'use strict'
var collapseWhiteSpace = require('collapse-white-space')
module.exports = normalize
// Normalize an identifier. Collapses multiple white space characters into a
// single space, and removes casing.
function normalize(value) {
return collapseWhiteSpace(value).toLowerCase()
}