diff options
author | Asher Gomez <ashersaupingomez@gmail.com> | 2024-08-31 08:43:32 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-31 08:43:32 +1000 |
commit | 504ae362d5d7695ad710bcdf86a0f57fb4fbd113 (patch) | |
tree | 76025ca1a4d3e389ccae5d3ed2da2cdea72fae80 /runtime/js/90_deno_ns.js | |
parent | 35074a10c670ebf9402994afc876eb20ae0e1b9e (diff) |
chore: remove `Deno.metrics()` (#25167)
Diffstat (limited to 'runtime/js/90_deno_ns.js')
-rw-r--r-- | runtime/js/90_deno_ns.js | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/runtime/js/90_deno_ns.js b/runtime/js/90_deno_ns.js index cf3e445c9..7bfae0b7c 100644 --- a/runtime/js/90_deno_ns.js +++ b/runtime/js/90_deno_ns.js @@ -32,10 +32,6 @@ import * as cron from "ext:deno_cron/01_cron.ts"; import * as webgpuSurface from "ext:deno_webgpu/02_surface.js"; const denoNs = { - metrics: () => { - internals.warnOnDeprecatedApi("Deno.metrics()", new Error().stack); - return core.metrics(); - }, Process: process.Process, run: process.run, isatty: tty.isatty, |