diff options
author | Asher Gomez <ashersaupingomez@gmail.com> | 2024-09-11 07:19:34 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-11 07:19:34 +1000 |
commit | a69b1e699ef76568a4a3da47939134abda545ec7 (patch) | |
tree | 951091db6743b2cd0a4e726f2d784386882a3dc3 /runtime/js/99_main.js | |
parent | f9007d3386bbe9f709ce413ac0cf099b86d4c4bf (diff) |
BREAKING(fs): remove `Deno.FsFile.prototype.rid` (#25499)
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.js | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/runtime/js/99_main.js b/runtime/js/99_main.js index 4b17635bb..36f08dce5 100644 --- a/runtime/js/99_main.js +++ b/runtime/js/99_main.js @@ -783,7 +783,6 @@ function bootstrapMainRuntime(runtimeOptions, warmup = false) { } if (internals.future) { delete globalThis.window; - delete Deno.FsFile.prototype.rid; } } else { // Warmup @@ -930,10 +929,6 @@ function bootstrapWorkerRuntime( nodeDebug, }); } - - if (internals.future) { - delete Deno.FsFile.prototype.rid; - } } else { // Warmup return; |