gleam-lang / stdlib

🎁 Gleam's standard library
https://hexdocs.pm/gleam_stdlib/
Apache License 2.0
466 stars 168 forks source link

`float.parse` fails on exponential notation on JavaScript #640

Closed richard-viney closed 3 months ago

richard-viney commented 3 months ago
  "1.234e10"
  |> float.parse
  |> should.equal(Ok(1.234e10))

Passes on Erlang but fails on JavaScript. PR to follow shortly.