lineify 0.1.0

Turn a token-by-token stream into stable line events. Buffer until a newline arrives, then emit the whole line. Zero deps.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# lineify

[![crates.io](https://img.shields.io/crates/v/lineify.svg)](https://crates.io/crates/lineify)

Token-stream → line-stream. Buffer partial lines, emit complete ones
on `\n`. CRLF supported.

```rust
use lineify::Lineifier;
let mut l = Lineifier::new();
let lines = l.push("hello\nworld\n");
```

Zero deps. MIT or Apache-2.0.