diff options
author | Asher Gomez <ashersaupingomez@gmail.com> | 2024-09-04 18:54:50 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-04 08:54:50 +0000 |
commit | 7e11dbb3ac6b3622fc032f1342406603f7a2a9d6 (patch) | |
tree | 4f775cdc6490633443f5a46703e2bda377420569 /tests/specs/future/runtime_api/main.js | |
parent | 3d36cbd056292e0a89d282fa84b7198ae38be4cc (diff) |
BEAKING(buffer): remove `Deno.readAll[Sync]()` (#25386)
Towards #22079
Signed-off-by: Asher Gomez <ashersaupingomez@gmail.com>
Diffstat (limited to 'tests/specs/future/runtime_api/main.js')
-rw-r--r-- | tests/specs/future/runtime_api/main.js | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/specs/future/runtime_api/main.js b/tests/specs/future/runtime_api/main.js index 9ab96e582..f5e17a6de 100644 --- a/tests/specs/future/runtime_api/main.js +++ b/tests/specs/future/runtime_api/main.js @@ -7,8 +7,6 @@ console.log( ); console.log("Deno.funlock is", Deno.funlock); console.log("Deno.funlockSync is", Deno.funlockSync); -console.log("Deno.readAll is", Deno.readAll); -console.log("Deno.readAllSync is", Deno.readAllSync); console.log("Deno.read is", Deno.read); console.log("Deno.readSync is", Deno.readSync); console.log("Deno.seek is", Deno.seek); |