name-suggestion-index/lib/stemmer.js
Bryan Housel 1c4fc70e3b WIP Modernize
- switch to type: module
- replace all CJS require/module.exports with ES6 import/expor
2021-06-22 00:04:52 -04:00

20 lines
462 B
JavaScript

import { simplify } from './simplify.js';
// Removes noise from the name so that we can compare
// similar names for catching duplicates.
export function stemmer(str) {
if (typeof str !== 'string') return '';
const noise = [
/ban(k|c)(a|o)?/ig,
/банк/ig,
/coop/ig,
/express/ig,
/(gas|fuel)/ig,
/wireless/ig,
/(shop|store)/ig
];
str = noise.reduce((acc, regex) => acc.replace(regex, ''), str);
return simplify(str);
}