bom v0.1.1 BOM
Documentation for Bom.
Link to this section Summary
Link to this section Functions
Link to this function
add(string)
Add byte order mark to text
Examples
iex> BOM.add("hello")
"hello"
Link to this function
file_add(path)
Add byte order mark to file
Examples
iex> File.write!("test/fixtures/test.csv", "test")
iex> BOM.file_add("test/fixtures/test.csv")
iex> File.read!("test/fixtures/test.csv")
"test"