No description
Find a file
sloane 77eeb74a3d
feat: add first transforms (gzip, gunzip, split, lines)
- `gzip`, `gunzip`: transforms a stream of byte chunks (`iodata()`) by either
  compressing or decompressing it using `:zlib`
- `split`: re-chunks a stream of binaries / strings into binary / string
  elements that are between the provided pattern
    - lines: shorthand for `split` with a pattern of `"\n"`
2024-12-13 15:42:36 -05:00
lib feat: add first transforms (gzip, gunzip, split, lines) 2024-12-13 15:42:36 -05:00
test initial commit 2024-12-13 14:36:45 -05:00
.formatter.exs initial commit 2024-12-13 14:36:45 -05:00
.gitignore initial commit 2024-12-13 14:36:45 -05:00
LICENSE add LICENSE 2024-12-13 14:39:10 -05:00
mix.exs initial commit 2024-12-13 14:36:45 -05:00
README.md initial commit 2024-12-13 14:36:45 -05:00

Transform

TODO: Add description

Installation

If available in Hex, the package can be installed by adding transform to your list of dependencies in mix.exs:

def deps do
  [
    {:transform, "~> 0.1.0"}
  ]
end

Documentation can be generated with ExDoc and published on HexDocs. Once published, the docs can be found at https://hexdocs.pm/transform.