1
0

feat: match ae/oe ligatures in normalization

This commit is contained in:
2026-08-29 16:54:59 +02:00
parent 217c676658
commit c49321ccf1
2 changed files with 3 additions and 0 deletions

View File

@@ -7,6 +7,7 @@ describe('normalize', () => {
expect(normalize(' Blur: The Best of… ')).toBe('blur best of')
expect(normalize('Björk — Début')).toBe('bjork debut')
expect(normalize('A Tribe Called Quest')).toBe('tribe called quest')
expect(normalize('Ænima')).toBe('aenima')
})
})