node-ray icon indicating copy to clipboard operation
node-ray copied to clipboard

When there is a decimal number in object data, it is displayed as 10.

Open jskorlol opened this issue 9 months ago • 2 comments

When there is a decimal number in object data, it is displayed as 10.

object

console.log
{
   "71213": [
     0.732,
     0.9700000000000001
   ]
}
ray
Object {
     "71213": [
      10.732,
      10.9700000000000001,
     ],
}

There seems to be a problem with decimal number representation in objects with depth.

jskorlol avatar May 21 '24 04:05 jskorlol