File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed
blog/2024-12-05-boa-release-020 Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -86,13 +86,14 @@ The below example creates a new `JsError` from a Rust standard error [`err`](htt
86
86
Boa’s boa_runtime crate contains an example runtime and basic runtime features and functionality for the boa_engine crate for runtime implementors.
87
87
Shout out to [@hansl](https://github.com/hansl) for their work on the additional features of the Boa runtime crate.
88
88
89
- ### TextDecoder and TextEncoder
89
+ ### Additional APIs
90
90
91
- Boa Runtime now supports [TextDecoder](https://developer.mozilla.org/en-US/docs/Web/API/TextDecoder) and [TextEncoder](https://developer.mozilla.org/en-US/docs/Web/API/TextEncoder). These are useful for encoding and decoding strings in JavaScript. This is a feature that has been requested by many users of Boa, and we are happy to announce that it is now available in Boa.
91
+ Additional APIs added the the Runtime crate include:
92
92
93
- ### URL and URLSearchParams
94
-
95
- Boa Runtime now supports the [URL](https://developer.mozilla.org/en-US/docs/Web/API/URL) API. This is useful for parsing and manipulating URLs in JavaScript. The majority of this is implemented using the [url](https://crates.io/crates/url) crate which itself is based on the WHATWG URL Standard. This is a feature that has been requested by many users of Boa, and we are happy to announce that it is now available in Boa.
93
+ - [`TextDecoder`](https://developer.mozilla.org/en-US/docs/Web/API/TextDecoder)
94
+ - [`TextEncoder`](https://developer.mozilla.org/en-US/docs/Web/API/TextEncoder)
95
+ - [`URL`](https://developer.mozilla.org/en-US/docs/Web/API/URL)
96
+ - [`URLSearchParams`](https://developer.mozilla.org/en-US/docs/Web/API/URLSearchParams).
96
97
97
98
### Console Improvements
98
99
You can’t perform that action at this time.
0 commit comments