Junk

Filter out OS junk files like .DS_Store and Thumbs.db. A Rust implementation of https://github.com/sindresorhus/junk

usage

```rust use junk;

junk::is(&path); // Check if filename is junk. junk::not(&path); // Check if filename is not junk. ```