summaryrefslogtreecommitdiff
path: root/runtime/js/99_main.js
diff options
context:
space:
mode:
authorAsher Gomez <ashersaupingomez@gmail.com>2024-09-04 11:28:15 +1000
committerGitHub <noreply@github.com>2024-09-04 01:28:15 +0000
commitb72d1a7256fd141c644024b8d9e15fa11234109e (patch)
tree584371371cf343a407b3881a1300b9da1cc186da /runtime/js/99_main.js
parent105c571fb6ba4d9b9404b5998eb6e17f0efdd79f (diff)
BREAKING(fs): remove `Deno.fstat[Sync]()` (#25351)
Towards #22079 Signed-off-by: Asher Gomez <ashersaupingomez@gmail.com>
Diffstat (limited to 'runtime/js/99_main.js')
-rw-r--r--runtime/js/99_main.js4
1 files changed, 0 insertions, 4 deletions
diff --git a/runtime/js/99_main.js b/runtime/js/99_main.js
index 174612851..a30561433 100644
--- a/runtime/js/99_main.js
+++ b/runtime/js/99_main.js
@@ -802,8 +802,6 @@ function bootstrapMainRuntime(runtimeOptions, warmup = false) {
delete globalThis.window;
delete Deno.Buffer;
delete Deno.File;
- delete Deno.fstat;
- delete Deno.fstatSync;
delete Deno.ftruncate;
delete Deno.ftruncateSync;
delete Deno.FsFile.prototype.rid;
@@ -979,8 +977,6 @@ function bootstrapWorkerRuntime(
if (future) {
delete Deno.Buffer;
delete Deno.File;
- delete Deno.fstat;
- delete Deno.fstatSync;
delete Deno.ftruncate;
delete Deno.ftruncateSync;
delete Deno.FsFile.prototype.rid;