diff --git a/Libraries/Utilities/createPerformanceLogger.js b/Libraries/Utilities/createPerformanceLogger.js index e30b42165bf..d53c107b3e4 100644 --- a/Libraries/Utilities/createPerformanceLogger.js +++ b/Libraries/Utilities/createPerformanceLogger.js @@ -13,7 +13,8 @@ const Systrace = require('../Performance/Systrace'); const infoLog = require('./infoLog'); -const performanceNow = global.nativeQPLTimestamp ?? global.performance.now; +const performanceNow = + global.nativeQPLTimestamp ?? global.performance.now.bind(global.performance); type Timespan = { description?: string,