(path string, data []byte, perm os.FileMode)
| 707 | } |
| 708 | |
| 709 | func WriteFile(path string, data []byte, perm os.FileMode) error { |
| 710 | return os.WriteFile(filepath.FromSlash(path), data, perm) |
| 711 | } |
| 712 | |
| 713 | func BreakIntoParts(full string) []string { |
| 714 | result := []string{full} |
no outgoing calls
no test coverage detected