expect_soft 0.1.1

.expect but exit instead of panic
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
`.expect` but exit instead of panic

# Example usage


```rust
use expect_soft::ExpectSoft;
use std::fs;

fn main() {
  fs::read_to_string("./readme.md").expect_soft("readme.md does not exist!");
}
```