mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
28 lines
857 B
TypeScript
28 lines
857 B
TypeScript
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
|
import * as msg from "gen/cli/msg_generated";
|
|
import { sendSync } from "./dispatch";
|
|
import * as flatbuffers from "./flatbuffers";
|
|
import { assert } from "./util";
|
|
|
|
export class Performance {
|
|
timeOrigin = 0;
|
|
|
|
constructor() {
|
|
this.timeOrigin = new Date().getTime();
|
|
}
|
|
|
|
/** Returns a current time from Deno's start
|
|
*
|
|
* const t = performance.now();
|
|
* console.log(`${t} ms since start!`);
|
|
*/
|
|
now(): number {
|
|
const builder = flatbuffers.createBuilder();
|
|
const inner = msg.Now.createNow(builder);
|
|
const baseRes = sendSync(builder, msg.Any.Now, inner)!;
|
|
assert(msg.Any.NowRes === baseRes.innerType());
|
|
const res = new msg.NowRes();
|
|
assert(baseRes.inner(res) != null);
|
|
return res.time().toFloat64() - this.timeOrigin;
|
|
}
|
|
}
|