isn/lib
Martin Frost 15385bfc6b Use __CALLER__ to determine isn datatype
`__CALLER__.module` contains enough information to determine what datatype to
use, so the usage of `Isn.Base` can be simplified to the following

```elixir
defmodule Isn.ISBN13 do
  use Isn.Base
end
```

instead of

```elixir
defmodule Isn.ISBN13 do
  use Isn.Base, :isbn13
end
```
2015-06-02 08:03:17 +02:00
..
isn.ex Use __CALLER__ to determine isn datatype 2015-06-02 08:03:17 +02:00