0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-10-31 09:14:20 -04:00
denoland-deno/js/performance.ts

25 lines
870 B
TypeScript
Raw Normal View History

2019-02-02 01:27:42 -05:00
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
import * as msg from "gen/cli/msg_generated";
2019-02-02 01:27:42 -05:00
import { sendSync } from "./dispatch";
import * as flatbuffers from "./flatbuffers";
import { assert } from "./util";
export class Performance {
/** Returns a current time from Deno's start.
* In milliseconds. Flag --allow-high-precision give
* a precise measure.
2019-02-02 01:27:42 -05:00
*
* const t = performance.now();
* console.log(`${t} ms since start!`);
*/
now(): number {
const builder = flatbuffers.createBuilder();
const inner = msg.Now.createNow(builder);
2019-02-02 01:27:42 -05:00
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.seconds().toFloat64() * 1e3 + res.subsecNanos() / 1e6;
2019-02-02 01:27:42 -05:00
}
}