You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 5, 2024. It is now read-only.
PR #3560 introduced a breaking change that causes number-like values (eg. "0930") to be parsed as numbers.
The problem is the PR uses isNaN(value) to determine whether the value is a string, but isNaN("0930") returns true. I propose modifying this to use typeof value == "number" instead, as it resolves correctly against the above test values.