* The **`TextEncoder.encodeInto()`** method takes a string to encode and a destination Uint8Array to put resulting UTF-8 encoded text into, and returns an object indicating the progress of the encoding. This is potentially more performant than the encode() method — especially when the target buffer
(source: string, destination: Uint8Array<ArrayBufferLike>)
| 194 | * [MDN Reference](https://developer.mozilla.org/docs/Web/API/TextEncoder/encodeInto) |
| 195 | */ |
| 196 | encodeInto(source: string, destination: Uint8Array<ArrayBufferLike>): TextEncoderEncodeIntoResult; |
| 197 | } |
| 198 | |
| 199 | interface TextEncoderCommon { |
no outgoing calls
no test coverage detected