const supportedEncodingsDenormalized = (function() {
denormalizedEncodings = []; <---
for (const encoding of supportedEncodings) {
denormalizedEncodings.push(
encoding.toLocaleLowerCase(),
encoding.toLocaleLowerCase().replace(/-/g, "")
);
}
return denormalizedEncodings;
})();