diff options
author | Luca Casonato <lucacasonato@yahoo.com> | 2021-01-30 19:22:24 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-30 19:22:24 +0100 |
commit | fa975a9baee4c7489ad743be72b97372b616453a (patch) | |
tree | e5ee1456bf653968366f988cd00ffccb754d77dd /op_crates/fetch/lib.rs | |
parent | ef46bc88bd48371d10ef59c99c8c113632ea7d97 (diff) |
refactor: rewrite Blob implementation (#9309)
Co-authored-by: Kitson Kelly <me@kitsonkelly.com>
Diffstat (limited to 'op_crates/fetch/lib.rs')
-rw-r--r-- | op_crates/fetch/lib.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/op_crates/fetch/lib.rs b/op_crates/fetch/lib.rs index 256e7904d..46c72e7a8 100644 --- a/op_crates/fetch/lib.rs +++ b/op_crates/fetch/lib.rs @@ -66,6 +66,10 @@ 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/26_fetch.js", include_str!("26_fetch.js"), ), |