diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-09-18 16:01:50 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-18 16:01:50 +0200 |
commit | ec174170ba090728ebb83b05450d5550a514f43f (patch) | |
tree | dca9445131ed60971d9b1c6a1425ed7e76ec0512 /op_crates/web/lib.rs | |
parent | 38196f7850d7498e98f5ec7c66801deadabe09cf (diff) |
refactor: move FileReader to op_crates/web (#7554)
Diffstat (limited to 'op_crates/web/lib.rs')
-rw-r--r-- | op_crates/web/lib.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/op_crates/web/lib.rs b/op_crates/web/lib.rs index f6c7137f7..278accd2f 100644 --- a/op_crates/web/lib.rs +++ b/op_crates/web/lib.rs @@ -46,6 +46,7 @@ pub fn init(isolate: &mut JsRuntime) { manifest_dir.join("02_abort_signal.js"), manifest_dir.join("08_text_encoding.js"), manifest_dir.join("11_url.js"), + manifest_dir.join("21_filereader.js"), ]; // TODO(nayeemrmn): https://github.com/rust-lang/cargo/issues/3946 to get the // workspace root. |