(label)
| 331 | } |
| 332 | |
| 333 | function getEncodingFromLabel(label) { |
| 334 | const enc = encodings.get(label); |
| 335 | if (enc !== undefined) return enc; |
| 336 | return encodings.get(trimAsciiWhitespace(label.toLowerCase())); |
| 337 | } |
| 338 | |
| 339 | let lazyInspect; |
| 340 |
no test coverage detected
searching dependent graphs…