(workingDir string, filePath string)
| 676 | } |
| 677 | |
| 678 | func absPath(workingDir string, filePath string) string { |
| 679 | if filepath.IsAbs(filePath) { |
| 680 | return filePath |
| 681 | } |
| 682 | return filepath.Join(workingDir, filePath) |
| 683 | } |
| 684 | |
| 685 | var transformMapStringString TransformerFunc = func(data any) (any, error) { |
| 686 | switch value := data.(type) { |
no outgoing calls
no test coverage detected
searching dependent graphs…