summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/Encoding
AgeCommit message (Collapse)Author
2022-02-16LibWeb: Implement a very basic version of TextDecoderAli Mohammad Pur
We had a very basic implementation of TextEncoder, let's add a TextDecoder next to that :^)
2022-02-08LibJS: Convert ArrayBuffer construction to ThrowCompletionOrdavidot
This also allows us to create TypedArrays with an existing buffer thus clearing up an additional FIXME in TextEncoder.
2021-12-12LibWeb: Implement TextEncoder.prototype.encodingLinus Groh
2021-12-12LibWeb: Implement TextEncoder.prototype.encode()Linus Groh
2021-12-12LibWeb: Add the TextEncoder interfaceLinus Groh
This is from the Encoding Standard (https://encoding.spec.whatwg.org), and therefore gets its own namespace and subdirectory within LibWeb :^)