All Versions
4
Latest Version
Avg Release Cycle
186 days
Latest Release
2109 days ago

Changelog History

  • v0.3.1

    December 11, 2018
  • v0.3.0 Changes

    October 08, 2017

    In this version removing non digits in a string is much faster thanks to suggests from people in elixir forum.

    And there are two slight changes in API

    🚚 1. Exceptions in remove non digits are now accepting char arrays instead of array of char arrays (which was a mistake of mine) e.g.: ~c[123] instead of ['1', '2', '3']

    1. function is_digit_only? is changes to digit_only? (although is_digit_only? exists just for a little backward compatibility.
  • v0.1.2 Changes

    June 06, 2017

    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}
    
  • v0.1.0 Changes

    June 01, 2017

    Numero basic functions

    🚀 First release