LibWeb: Implement TextEncoder.prototype.encode()

This commit is contained in:
Linus Groh 2021-12-12 18:05:11 +00:00 committed by Andreas Kling
commit f37d00c07b
Notes: sideshowbarker 2024-07-17 22:53:32 +09:00
6 changed files with 69 additions and 2 deletions

View file

@ -32,6 +32,8 @@ public:
return TextEncoder::create();
}
JS::Uint8Array* encode(String const& input) const;
protected:
// https://encoding.spec.whatwg.org/#dom-textencoder
TextEncoder() = default;