I am testing on Rescript 12.0.0-beta.6 . The following: ```res "12xxx3"->Int.fromString ``` parses to `Some(12)`. This is unexpected for me, because I would expect that it parses to `None`, since `"12xxx3"` is not a valid integer. Is this intentional, or a bug? I would consider this a bug.
I am testing on Rescript 12.0.0-beta.6 .
The following:
parses to
Some(12). This is unexpected for me, because I would expect that it parses toNone, since"12xxx3"is not a valid integer.Is this intentional, or a bug? I would consider this a bug.