https://github.com/joshuawscott/lzf_elixir
LZF decompression algorithm in elixir
https://github.com/joshuawscott/lzf_elixir
elixir lzf
Last synced: about 1 month ago
JSON representation
LZF decompression algorithm in elixir
- Host: GitHub
- URL: https://github.com/joshuawscott/lzf_elixir
- Owner: joshuawscott
- Created: 2018-02-20T04:14:10.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-03-08T16:29:12.000Z (over 7 years ago)
- Last Synced: 2025-05-16T22:38:03.978Z (about 2 months ago)
- Topics: elixir, lzf
- Language: Elixir
- Size: 35.2 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# LZF
[](https://travis-ci.org/joshuawscott/lzf_elixir) [](https://hex.pm/packages/lzf)
Pure elixir implementation of the LZF (de)compression algorithm
As of 0.1, this only supports decompression. PRs welcome :)
[Documentation](https://hexdocs.pm/lzf).
## Installation
If [available in Hex](https://hex.pm/docs/publish), the package can be installed
by adding `lzf` to your list of dependencies in `mix.exs`:```elixir
def deps do
[
{:lzf, "~> 0.1"}
]
end
```## Testing
```
mix test
```