(value string)
| 150 | } |
| 151 | |
| 152 | func normalizeComparableModelID(value string) string { |
| 153 | return strings.NewReplacer(".", "-", "_", "-").Replace(strings.ToLower(strings.TrimSpace(value))) |
| 154 | } |
| 155 | |
| 156 | func usdToAIC(usd float64) float64 { |
| 157 | return usd / 0.01 |
no test coverage detected