README.md
# JediHelpers
A collection of general-purpose helpers for Elixir projects, designed to make your codebase cleaner and more reusable. Includes utilities for working with changesets and common functional patterns.
## Features
- `JediHelpers.ChangesetHelpers.trim_whitespace/2` – trims leading and trailing whitespace from string fields in Ecto changesets.
- Other helper functions coming soon.
## Installation
Add `:jedi_helpers` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:jedi_helpers, "~> 0.1.0"}
]
end
Documentation can be generated with [ExDoc](https://github.com/elixir-lang/ex_doc)
and published on [HexDocs](https://hexdocs.pm). Once published, the docs can
be found at <https://hexdocs.pm/jedi_helpers>.