From 03d8e474d7c2a2f28c266a1c6d2199f6f16f5afe Mon Sep 17 00:00:00 2001 From: Asher Gomez Date: Tue, 3 Sep 2024 20:46:13 +1000 Subject: BREAKING(io): remove `Deno.copy()` (#25345) Towards #22079 --------- Signed-off-by: Asher Gomez --- tests/specs/future/runtime_api/main.js | 1 - tests/specs/future/runtime_api/main.out | 1 - 2 files changed, 2 deletions(-) (limited to 'tests/specs/future/runtime_api') diff --git a/tests/specs/future/runtime_api/main.js b/tests/specs/future/runtime_api/main.js index a12b2f1fc..ab53a809b 100644 --- a/tests/specs/future/runtime_api/main.js +++ b/tests/specs/future/runtime_api/main.js @@ -1,6 +1,5 @@ console.log("window is", globalThis.window); console.log("Deno.Buffer is", Deno.Buffer); -console.log("Deno.copy is", Deno.copy); console.log("Deno.File is", Deno.File); console.log("Deno.fstat is", Deno.fstat); console.log("Deno.fstatSync is", Deno.fstatSync); diff --git a/tests/specs/future/runtime_api/main.out b/tests/specs/future/runtime_api/main.out index 398922749..08b62ea3a 100644 --- a/tests/specs/future/runtime_api/main.out +++ b/tests/specs/future/runtime_api/main.out @@ -1,6 +1,5 @@ window is undefined Deno.Buffer is undefined -Deno.copy is undefined Deno.File is undefined Deno.fstat is undefined Deno.fstatSync is undefined -- cgit v1.2.3