Turns a string into binary data (in the form of a Uint8Array) using UTF-8 encoding.
(input?: string)
| 8110 | interface TextEncoder extends TextEncoderCommon { |
| 8111 | /** Turns a string into binary data (in the form of a Uint8Array) using UTF-8 encoding. */ |
| 8112 | encode(input?: string): Uint8Array<ArrayBuffer>; |
| 8113 | |
| 8114 | /** Encodes a string into the destination Uint8Array and returns the result of the encoding. */ |
| 8115 | encodeInto( |
no outgoing calls