1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-01 09:24:20 -04:00
denoland-deno/ext/web
Luca Casonato 19c8d7702f
chore: improve error messages in CompressionStream (#13585)
This commit makes the error messages that one sees when passing
something other than a BufferSource to a (De)CompressionStream. The
WPT tests already pass, because they just check for error type
(TypeError), and not error message. A TypeError was already thrown for
invalid values via serde_v8.
2022-02-16 12:21:46 +01:00
..
benches chore(ext/timers): move ext/timers to ext/web (#13665) 2022-02-15 12:17:30 +01:00
00_infra.js refactor: update runtime code for primordial check for iterators (#13510) 2022-02-07 13:54:32 +01:00
01_dom_exception.js refactor: primordials for instanceof (#13527) 2022-02-01 18:06:11 +01:00
01_mimesniff.js chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
02_event.js refactor: update runtime code for primordial check for iterators (#13510) 2022-02-07 13:54:32 +01:00
02_structured_clone.js refactor: primordials for instanceof (#13527) 2022-02-01 18:06:11 +01:00
02_timers.js chore(ext/timers): move ext/timers to ext/web (#13665) 2022-02-15 12:17:30 +01:00
03_abort_signal.js refactor: primordials for instanceof (#13527) 2022-02-01 18:06:11 +01:00
04_global_interfaces.js chore: update copyright to 2022 (#13306) 2022-01-07 22:09:52 -05:00
05_base64.js refactor: update runtime code for primordial check for iterators (#13510) 2022-02-07 13:54:32 +01:00
06_streams.js refactor: primordials for instanceof (#13527) 2022-02-01 18:06:11 +01:00
06_streams_types.d.ts chore: update copyright year (#13434) 2022-01-20 16:10:16 +09:00
08_text_encoding.js refactor: primordials for instanceof (#13527) 2022-02-01 18:06:11 +01:00
09_file.js refactor: primordials for instanceof (#13527) 2022-02-01 18:06:11 +01:00
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 refactor: primordials for instanceof (#13527) 2022-02-01 18:06:11 +01:00
14_compression.js chore: improve error messages in CompressionStream (#13585) 2022-02-16 12:21:46 +01:00
15_performance.js chore(ext/timers): move ext/timers to ext/web (#13665) 2022-02-15 12:17:30 +01:00
blob.rs fix: a Request whose URL is a revoked blob URL should still fetch (#11947) 2021-09-08 11:29:21 +02:00
Cargo.toml chore(ext/timers): move ext/timers to ext/web (#13665) 2022-02-15 12:17:30 +01:00
compression.rs feat(ext/web): add CompressionStream API (#11728) 2022-01-24 18:03:06 +01:00
internal.d.ts chore: update copyright year (#13434) 2022-01-20 16:10:16 +09:00
lib.deno_web.d.ts feat(ext/web): add CompressionStream API (#11728) 2022-01-24 18:03:06 +01:00
lib.rs chore(ext/timers): move ext/timers to ext/web (#13665) 2022-02-15 12:17:30 +01:00
message_port.rs fix: Deno.emit crashes with BorrowMutError (#12627) 2021-11-03 09:27:36 -04:00
README.md Rename extensions/ directory to ext/ (#11643) 2021-08-11 12:27:05 +02:00
timers.rs chore(ext/timers): move ext/timers to ext/web (#13665) 2022-02-15 12:17:30 +01: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/.