Skip to content

Commit f8440e1

Browse files
committed
bunch additional APIs together in Boa Runtime
1 parent 1dcb55f commit f8440e1

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

blog/2024-12-05-boa-release-020/index.mdx

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -86,13 +86,14 @@ The below example creates a new `JsError` from a Rust standard error [`err`](htt
8686
Boa’s boa_runtime crate contains an example runtime and basic runtime features and functionality for the boa_engine crate for runtime implementors.
8787
Shout out to [@hansl](https://github.com/hansl) for their work on the additional features of the Boa runtime crate.
8888

89-
### TextDecoder and TextEncoder
89+
### Additional APIs
9090

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:
9292

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).
9697

9798
### Console Improvements
9899

0 commit comments

Comments
 (0)