1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-22 15:06:54 -05:00
denoland-deno/op_crates/fetch
Bartek Iwańczuk b657d743a2
refactor: remove CliState, use OpState, add CliModuleLoader (#7588)
- remove "CliState.workers" and "CliState.next_worker_id", instead
store them on "OpState" using type aliases.
- remove "CliState.global_timer" and "CliState.start_time", instead
store them on "OpState" using type aliases.
- remove "CliState.is_internal", instead pass it to Worker::new
- move "CliState::permissions" to "OpState"
- move "CliState::main_module" to "OpState"
- move "CliState::global_state" to "OpState"
- move "CliState::check_unstable()" to "GlobalState"
- change "cli_state()" to "global_state()"
- change "deno_core::ModuleLoader" trait to pass "OpState" to callbacks
- rename "CliState" to "CliModuleLoader"
2020-09-20 01:17:35 +02:00
..
01_fetch_util.js refactor: deno_fetch op crate (#7524) 2020-09-18 09:20:55 -04:00
03_dom_iterable.js refactor: deno_fetch op crate (#7524) 2020-09-18 09:20:55 -04:00
11_streams.js refactor: deno_fetch op crate (#7524) 2020-09-18 09:20:55 -04:00
20_headers.js refactor: deno_fetch op crate (#7524) 2020-09-18 09:20:55 -04:00
26_fetch.js refactor: deno_fetch op crate (#7524) 2020-09-18 09:20:55 -04:00
Cargo.toml v1.4.1 2020-09-18 21:28:11 +02:00
lib.deno_fetch.d.ts refactor: deno_fetch op crate (#7524) 2020-09-18 09:20:55 -04:00
lib.rs refactor: remove CliState, use OpState, add CliModuleLoader (#7588) 2020-09-20 01:17:35 +02:00
README.md publish deno_fetch during CI (#7557) 2020-09-18 12:31:30 -04:00

This crate provides the web standard fetch API to deno_core.