1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-23 15:16:54 -05:00

benching: use performance.now (denoland/deno_std#385)

Original: ad1b95eaf7
This commit is contained in:
Vincent LE GOFF 2019-05-10 16:48:06 +02:00 committed by Ryan Dahl
parent 480b9e71ff
commit e56c207f2c

View file

@ -61,10 +61,10 @@ function assertTiming(clock: BenchmarkClock): void {
function createBenchmarkTimer(clock: BenchmarkClock): BenchmarkTimer {
return {
start(): void {
clock.start = Date.now();
clock.start = performance.now();
},
stop(): void {
clock.stop = Date.now();
clock.stop = performance.now();
}
};
}