summaryrefslogtreecommitdiff
path: root/cli/js/performance.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/js/performance.ts')
-rw-r--r--cli/js/performance.ts16
1 files changed, 0 insertions, 16 deletions
diff --git a/cli/js/performance.ts b/cli/js/performance.ts
deleted file mode 100644
index 7aaa35952..000000000
--- a/cli/js/performance.ts
+++ /dev/null
@@ -1,16 +0,0 @@
-// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
-import { now as opNow } from "./ops/timers.ts";
-
-export class Performance {
- /** Returns a current time from Deno's start in milliseconds.
- *
- * Use the flag --allow-hrtime return a precise value.
- *
- * const t = performance.now();
- * console.log(`${t} ms since start!`);
- */
- now(): number {
- const res = opNow();
- return res.seconds * 1e3 + res.subsecNanos / 1e6;
- }
-}