mirror of
https://github.com/actualbudget/actual.git
synced 2026-05-08 04:49:45 -05:00
12 lines
294 B
JavaScript
12 lines
294 B
JavaScript
'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()
|
|
}
|