Answers for "TypeError: global.performance.now is not a function"

2

TypeError: global.performance.now is not a function

make change to this file: node_modules/react-native-reanimated/src/reanimated2/core.ts Line 386, remove this:

global.performance = {
 now: global._chronoNow,
};

then add this:

if(global.performance == null) {
    global.performance = {
      now: global._chronoNow,
    };
  }
Posted by: Guest on February-01-2022

Code answers related to "TypeError: global.performance.now is not a function"

Browse Popular Code Answers by Language