Skip to content
7 changes: 4 additions & 3 deletions packages/utils/src/normalize.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,8 @@ function visit(
// Get the simple cases out of the way first
if (
value == null || // this matches null and undefined -> eqeq not eqeqeq
(['number', 'boolean', 'string'].includes(typeof value) && !Number.isNaN(value))
(['boolean', 'string'].includes(typeof value) ||
(typeof value === 'number' && Number.isFinite(value)))
) {
return value as Primitive;
}
Expand Down Expand Up @@ -220,8 +221,8 @@ function stringifyValue(
return '[SyntheticEvent]';
}

if (typeof value === 'number' && value !== value) {
return '[NaN]';
if (typeof value === 'number' && !Number.isFinite(value)) {
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

actually, we can improve this even further :D we can combine this with the check above for nan, as (NaN).toString() also returns NaN. And isFinite(NaN) === false. So we can remove this completely:

if (typeof value === 'number' && value !== value) {
      return '[NaN]';
    }

and only keep the new check you added!

return `[${value}]`;
}

if (typeof value === 'function') {
Expand Down
2 changes: 2 additions & 0 deletions packages/utils/test/normalize.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -403,6 +403,8 @@ describe('normalize()', () => {
describe('changes unserializeable/global values/classes to their respective string representations', () => {
test('primitive values', () => {
expect(normalize(NaN)).toEqual('[NaN]');
expect(normalize(Infinity)).toEqual('[Infinity]');
expect(normalize(-Infinity)).toEqual('[-Infinity]');
expect(normalize(Symbol('dogs'))).toEqual('[Symbol(dogs)]');
expect(normalize(BigInt(1121201212312012))).toEqual('[BigInt: 1121201212312012]');
});
Expand Down
Loading