Year Helper

CI

This library provides some useful functions to deal with years.

Usage

```rust let year = 2020; let month = 2; let leapyear = yearhelper::isleapyear(year);

let daysinmonth = yearhelper::getdaysinmonth(leapyear, month); let daysinyear = yearhelper::getdaysinyear(leapyear); ```

Crates.io

https://crates.io/crates/year-helper

Documentation

https://docs.rs/year-helper

License

MIT