(field interface{})
| 61 | } |
| 62 | |
| 63 | func getString(field interface{}) string { |
| 64 | if str, ok := field.(string); ok { |
| 65 | return str |
| 66 | } |
| 67 | |
| 68 | return "" |
| 69 | } |
| 70 | |
| 71 | func getFloat(field interface{}) float64 { |
| 72 | str := getString(field) |
no outgoing calls
no test coverage detected