import { linesParser, linesFormatter } from 'f-streams-async'
transform = linesParser(options)
creates a parser transform.
optionsis reserved for future use.transform = linesFormatter(options)
creates a formatter transform.
options.eoldefines the line separator. It is set to\nby default.
options.extraindicates if an extra line separator must be emitted or not at the end. It is false by default.