UNPKG

@universal-material/web

Version:
9 lines 220 B
export const normalizeText = (text) => { if (!text) { return text ?? ''; } return text .normalize('NFD') .replace(/[\u0300-\u036f]/g, ''); }; //# sourceMappingURL=normalize-text.js.map