Current section

Files

Jump to
csv lib csv decoding preprocessing none.ex
Raw

lib/csv/decoding/preprocessing/none.ex

defmodule CSV.Decoding.Preprocessing.None do
use CSV.Defaults
@moduledoc ~S"""
The CSV none preprocessor module - input = output.
"""
@doc """
Will pass on input unchanged
"""
def process(stream, _ \\ []) do
stream
end
end