deno/ext/web
Mark Ladyshau 402b497299
fix(core): rethrow exception during structured cloning serialization (#14671)
- Introduced optional callback for Deno.core.serialize API, that returns
cloning error if there is one.
- Removed try/catch in seralize structured clone function and throw error from
callback.
- Removed "Object with a getter that throws" assertion from WPT.
2022-05-26 17:14:38 +02:00
..
benches chore: fix failing bench (#14644) 2022-05-17 16:28:03 +02:00
00_infra.js feat(ext/web): implement static Response.json (#14566) 2022-05-13 14:28:05 +02:00
01_dom_exception.js refactor: primordials for instanceof (#13527) 2022-02-01 18:06:11 +01:00
01_mimesniff.js cleanup(web, fetch): dedupe minesniff / "extract a MIME type" algorithm (#14044) 2022-03-20 14:31:12 +01:00
02_event.js fix(ext/web): throw if listener and signal are null (#14601) 2022-05-16 10:46:39 -04:00
02_structured_clone.js fix(core): Don't override structured clone error messages from V8 (#13942) 2022-03-14 19:35:15 +01:00
02_timers.js feat(ext/web): Add error events for event listener and timer errors (#14159) 2022-04-13 11:50:57 +02:00
03_abort_signal.js feat(ext/web): Add AbortSignal.timeout() (#13687) 2022-03-14 20:19:22 +01:00
04_global_interfaces.js chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
05_base64.js perf(ext/web): optimize atob/btoa (#13841) 2022-03-05 20:12:30 +01:00
06_streams.js fix(fmt): prevent infinite loop when formatting certain binary expressions (#14725) 2022-05-25 19:55:31 -04:00
06_streams_types.d.ts chore: update copyright year (#13434) 2022-01-20 16:10:16 +09:00
08_text_encoding.js perf(ext/web): Add fast path for non-streaming TextDecoder (#14217) 2022-05-17 19:22:48 +05:30
09_file.js perf(web): optimize Blob.text and Blob.arrayBuffer (#13981) 2022-03-16 19:16:52 +05:30
10_filereader.js refactor: update runtime code for primordial check for iterators (#13510) 2022-02-07 13:54:32 +01:00
11_blob_url.js chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
12_location.js chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
13_message_port.js fix(core): rethrow exception during structured cloning serialization (#14671) 2022-05-26 17:14:38 +02:00
14_compression.js chore: improve error messages in CompressionStream (#13585) 2022-02-16 12:21:46 +01:00
15_performance.js feat(ext/web): add performance.toJSON (#14548) 2022-05-13 18:36:00 +02:00
blob.rs chore(runtime): Make some ops in ext and runtime infallible. (#14589) 2022-05-13 10:36:31 +02:00
Cargo.toml 1.22.0 (#14657) 2022-05-18 20:35:16 +05:30
compression.rs chore(runtime): Make some ops in ext and runtime infallible. (#14589) 2022-05-13 10:36:31 +02:00
internal.d.ts feat(ext/web): implement static Response.json (#14566) 2022-05-13 14:28:05 +02:00
lib.deno_web.d.ts feat(runtime): two-tier subprocess API (#11618) 2022-04-21 00:20:33 +02:00
lib.rs perf(ext/web): Add fast path for non-streaming TextDecoder (#14217) 2022-05-17 19:22:48 +05:30
message_port.rs chore(runtime): Make some ops in ext and runtime infallible. (#14589) 2022-05-13 10:36:31 +02:00
README.md Rename extensions/ directory to ext/ (#11643) 2021-08-11 12:27:05 +02:00
timers.rs chore(runtime): Make some ops in ext and runtime infallible. (#14589) 2022-05-13 10:36:31 +02:00

deno web

Op crate that implements Event, TextEncoder, TextDecoder and File API (https://w3c.github.io/FileAPI).

Testing for text encoding is done via WPT in cli/.