使用 Hermes 引擎测量性能

Measuring the Performance with the Hermes Engine

我正在尝试在 React Native 中进行分析并使用 hermes 引擎。我想测量函数调用之间的时间。 在 Js 中我们可以使用 console.time 或 performace.now 但是当我将这些功能与 hermes 引擎一起使用时我得到 "Undefined is not a function" 错误。

当我使用 运行 与 Chrome 调试器相同的代码时,它工作正常。

任何人都可以建议我如何使用 hermes 引擎实现以下代码。

const checkTime = () => {
   console.time('time_NoOp');
   doNothing();
   console.timeEnd('time_NoOp');
   
};   

.

更新:

我可以使用下面的代码解决问题

const PerformanceTime=() => {
   const t0 = performance.now();
   doNothing();
   const t1 = performance.now();
   console.log(t1 - t0);
}