diff options
author | Asher Gomez <ashersaupingomez@gmail.com> | 2024-09-05 16:22:47 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-05 16:22:47 +1000 |
commit | 713ed065e7cd1013e525a8e571cef08a30de87be (patch) | |
tree | 4237cb806c991d258d786d66afe99e291f5ec477 /runtime/js/99_main.js | |
parent | 0450c12df5deee18407b940ffedeb1a16bab35a1 (diff) |
BREAKING(fs): remove `Deno.File` (#25447)
Towards #22079
Diffstat (limited to 'runtime/js/99_main.js')
-rw-r--r-- | runtime/js/99_main.js | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/runtime/js/99_main.js b/runtime/js/99_main.js index d0171acd2..913761f6a 100644 --- a/runtime/js/99_main.js +++ b/runtime/js/99_main.js @@ -801,7 +801,6 @@ function bootstrapMainRuntime(runtimeOptions, warmup = false) { if (internals.future) { delete globalThis.window; delete Deno.Buffer; - delete Deno.File; delete Deno.FsFile.prototype.rid; delete Deno.funlock; delete Deno.funlockSync; @@ -965,7 +964,6 @@ function bootstrapWorkerRuntime( if (internals.future) { delete Deno.Buffer; - delete Deno.File; delete Deno.FsFile.prototype.rid; delete Deno.funlock; delete Deno.funlockSync; |