2021-12-12 15:03:22 -03:00
|
|
|
[Exposed=(Window,Worker)]
|
|
|
|
|
interface TextEncoder {
|
|
|
|
|
constructor();
|
|
|
|
|
|
2021-12-12 15:05:11 -03:00
|
|
|
[NewObject] Uint8Array encode(optional USVString input = "");
|
2021-12-12 15:03:22 -03:00
|
|
|
// TextEncoderEncodeIntoResult encodeInto(USVString source, [AllowShared] Uint8Array destination);
|
|
|
|
|
|
2021-12-12 15:06:07 -03:00
|
|
|
readonly attribute DOMString encoding;
|
2021-12-12 15:03:22 -03:00
|
|
|
};
|