numero v0.1.2 Release Notes

Release Date: 2017-06-06 // almost 7 years ago
  • normalize_as_number! function added.

    👻 this function (with !) will return the number on success and an exception on failure.

    Example:

    # with !result = Numero.normalize\_as\_number!("123.45")# result = 123.45# without !result = Numero.normalize\_as\_number("123.45")# result = {:ok, 123.45}