How do I remove accentuated characters from a string? Especially in IE6, I had something like this:
accentsTidy = function(s){ var r=s.toLowerCase();
normalize-diacritics is very useful
const { normalize } = require('normalize-diacritics'); /** Assuming top-level await is enabled... */ await normalize('söme stüff with áccènts'); // 'some stuff with accents'