diff options
author | Luca Casonato <lucacasonato@yahoo.com> | 2021-02-04 15:05:36 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-04 15:05:36 +0100 |
commit | 25b35be50dd59d00e126591dd24d06824e2c50cf (patch) | |
tree | 0708d2b8883be98c5c349bfad2d4225f02d8c6ab /op_crates/fetch/lib.rs | |
parent | 79fa7e0e96ed8261360b90fedcd795ad3a405e44 (diff) |
refactor: rewrite File implementation (#9334)
Diffstat (limited to 'op_crates/fetch/lib.rs')
-rw-r--r-- | op_crates/fetch/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/op_crates/fetch/lib.rs b/op_crates/fetch/lib.rs index 23f356a96..157ce2fb2 100644 --- a/op_crates/fetch/lib.rs +++ b/op_crates/fetch/lib.rs @@ -67,8 +67,8 @@ pub fn init(isolate: &mut JsRuntime) { include_str!("20_headers.js"), ), ( - "deno:op_crates/fetch/21_blob.js", - include_str!("21_blob.js"), + "deno:op_crates/fetch/21_file.js", + include_str!("21_file.js"), ), ( "deno:op_crates/fetch/26_fetch.js", |