cash 0.3.4

An immutable library to create, calculate, format and exchange currency.
Documentation
1
2
3
pub fn sanitize_negative (amount: f64) -> f64 {
	if amount <= 0.0 { 0.0 } else { amount }
}