normalizationAlgorithmsMap: Record<string, (title: string) => string> = ...

Map of normalization algorithm names to implementations. Used for dynamic algorithm selection in worker context.

export const normalizationAlgorithmsMap: Record<
string,
(title: string) => string
> = {
normalizeForMatching,
processTitle,
};