react-native-worklets-core icon indicating copy to clipboard operation
react-native-worklets-core copied to clipboard

Object.entries() does not work

Open tremblerz opened this issue 6 months ago • 0 comments

function test() {
  'worklet'
  const x = {a: [1,2,3], b:[4,5]};
  console.log(Object.entries(x));
}

When calling this function via a worklet context, it will return an empty array. I am using the version 1.3.3 of react-native-worklets-core

tremblerz avatar Jul 09 '25 01:07 tremblerz