Packages

A collection of functions that extend the capabilities of Elixir's standard library modules.

Current section

Files

Jump to
ex_ex lib ex_ex.ex
Raw

lib/ex_ex.ex

defmodule ExEx do
def truthy?(nil), do: false
def truthy?(false), do: false
def truthy?(_), do: true
end