(string)
| 3462 | var utf8Encoder = new TextEncoder(); |
| 3463 | var utf8Decoder = new TextDecoder("utf-8", { ignoreBOM: true }); |
| 3464 | function utf8Encode(string) { |
| 3465 | return utf8Encoder.encode(string); |
| 3466 | } |
| 3467 | function utf8DecodeWithoutBOM(bytes) { |
| 3468 | return utf8Decoder.decode(bytes); |
| 3469 | } |
no test coverage detected
searching dependent graphs…