| Conditions | 2 |
| Total Lines | 7 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | package util |
||
| 38 | func Abs(path string) string { |
||
|
1 ignored issue
–
show
|
|||
| 39 | abs, err := filepath.Abs(path) |
||
| 40 | if err == nil { |
||
| 41 | return abs |
||
| 42 | } |
||
| 43 | |||
| 44 | return path |
||
| 45 | } |
||
| 65 |