1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00
denoland-deno/ext/web
Matt Mastracci 0efe438f7c
perf: remove opAsync (#21690)
`opAsync` requires a lookup by name on each async call. This is a
mechanical translation of all opAsync calls to ensureFastOps.

The `opAsync` API on Deno.core will be removed at a later time.
2023-12-27 02:30:26 +01:00
..
benches refactor: remove TimersPermissions::check_unstable (#20831) 2023-10-09 02:08:10 +02:00
00_infra.js refactor: pull 'core', 'internals', 'primordials' from ES module (#21462) 2023-12-07 14:21:01 +01:00
01_dom_exception.js refactor: pull 'core', 'internals', 'primordials' from ES module (#21462) 2023-12-07 14:21:01 +01:00
01_mimesniff.js refactor: pull 'core', 'internals', 'primordials' from ES module (#21462) 2023-12-07 14:21:01 +01:00
02_event.js refactor: pull 'core', 'internals', 'primordials' from ES module (#21462) 2023-12-07 14:21:01 +01:00
02_structured_clone.js refactor: pull 'core', 'internals', 'primordials' from ES module (#21462) 2023-12-07 14:21:01 +01:00
02_timers.js chore: ensure that each op provided to ensureFastOps is only used once (#21689) 2023-12-24 13:04:32 +00:00
03_abort_signal.js refactor: pull 'core', 'internals', 'primordials' from ES module (#21462) 2023-12-07 14:21:01 +01:00
04_global_interfaces.js refactor: pull 'core', 'internals', 'primordials' from ES module (#21462) 2023-12-07 14:21:01 +01:00
05_base64.js refactor: pull 'core', 'internals', 'primordials' from ES module (#21462) 2023-12-07 14:21:01 +01:00
06_streams.js perf: remove opAsync (#21690) 2023-12-27 02:30:26 +01:00
06_streams_types.d.ts feat(streams): ReadableStream.read min option (#20849) 2023-11-24 23:24:41 +01:00
08_text_encoding.js refactor: pull 'core', 'internals', 'primordials' from ES module (#21462) 2023-12-07 14:21:01 +01:00
09_file.js perf: remove opAsync (#21690) 2023-12-27 02:30:26 +01:00
10_filereader.js refactor: pull 'core', 'internals', 'primordials' from ES module (#21462) 2023-12-07 14:21:01 +01:00
12_location.js refactor: pull 'core', 'internals', 'primordials' from ES module (#21462) 2023-12-07 14:21:01 +01:00
13_message_port.js perf: remove opAsync (#21690) 2023-12-27 02:30:26 +01:00
14_compression.js refactor: pull 'core', 'internals', 'primordials' from ES module (#21462) 2023-12-07 14:21:01 +01:00
15_performance.js refactor: pull 'core', 'internals', 'primordials' from ES module (#21462) 2023-12-07 14:21:01 +01:00
16_image_data.js feat(ext/web): add ImageData Web API (#21183) 2023-12-06 14:20:28 +01:00
blob.rs refactor: rewrite several extension ops to op2 (#20457) 2023-10-05 14:34:38 +02:00
Cargo.toml chore: forward v1.39.1 commit to main (#21667) (#21671) 2023-12-21 18:43:52 +00:00
compression.rs refactor: rewrite several extension ops to op2 (#20457) 2023-10-05 14:34:38 +02:00
hr_timer_lock.rs chore: update to Rust 1.71 (#19822) 2023-07-13 15:16:24 -06:00
internal.d.ts feat(ext/web): add ImageData Web API (#21183) 2023-12-06 14:20:28 +01:00
lib.deno_web.d.ts feat(ext/web): add ImageData Web API (#21183) 2023-12-06 14:20:28 +01:00
lib.rs feat(ext/web): add ImageData Web API (#21183) 2023-12-06 14:20:28 +01:00
message_port.rs refactor: rewrite more ops to op2 macro (#20478) 2023-09-14 23:05:18 +02:00
README.md Rename extensions/ directory to ext/ (#11643) 2021-08-11 12:27:05 +02:00
stream_resource.rs refactor: use resourceForReadableStream for fetch (#20217) 2023-12-01 08:56:10 -07:00
timers.rs refactor: op_sleep uses op2 macro (#20908) 2023-10-26 14:16:41 -06: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/.