README.md
# casefold
[](https://hex.pm/packages/casefold)
[](https://hexdocs.pm/casefold/)
A small collection of utility functions and constants for working with strings.
```sh
gleam add casefold@1
```
```gleam
import casefold.{casefold}
pub fn main() -> Nil {
assert casefold("Ω and ẞ SHARP S") == "ω and ss sharp s"
}
```
Further documentation can be found at <https://hexdocs.pm/casefold>.
## Development
```sh
gleam build # Build the project
gleam test # Run the tests
```