11 lines
197 B
JavaScript
11 lines
197 B
JavaScript
function normalizeTitle(title) {
|
|
return String(title || '')
|
|
.toLowerCase()
|
|
.replace(/[^a-z0-9\s]/g, ' ')
|
|
.replace(/\s+/g, ' ')
|
|
.trim();
|
|
}
|
|
|
|
module.exports = {
|
|
normalizeTitle,
|
|
};
|