| 4203 | } |
| 4204 | }; |
| 4205 | let pushDecoder = label => { |
| 4206 | let raw = String(label || "").trim(); |
| 4207 | if (raw && decoderList.indexOf(raw) === -1) { |
| 4208 | decoderList.push(raw); |
| 4209 | } |
| 4210 | }; |
| 4211 | let normalizedPreferred = normalize(preferredCharset).replace(/["']/g, ""); |
| 4212 | pushDecoder(preferredCharset); |
| 4213 | pushDecoder(normalizedPreferred); |
no outgoing calls
no test coverage detected