ops/second 和 JSPerf 中的慢速百分比之间有什么关系?

What's the relationship between ops/second and percentage slower in JSPerf?

"X% slower" 这个数字是如何计算出来的?我想也许是:

(fastest - slower) / fastest

但在这种情况下,那就是:

(672555 - 194412) / 672555 = 0.7109351651537792

也许也使用了误差范围?

https://github.com/bestiejs/benchmark.js/blob/7fc4c3cf7c4bccff4dbce58883a4181c2e830f85/example/jsperf/ui.js#L556:

percent = (1 - (hz / fastestHz)) * 100