Schizo
Just play with string :kissing_heart:
Example
iex> Schizo.uppercase("foo bar baz")
"foo BAR baz"
iex> Schizo.unvowel("foo bar baz")
"foo br baz"Installation
If available in Hex, the package can be installed as:
Add schizo to your list of dependencies in
mix.exs:def deps do
[{:schizo, "~> 0.0.1"}]end
Ensure schizo is started before your application:
def application do
[applications: [:schizo]]end