func originalPath()

in code/function/function.go [187:192]


func originalPath(name string) string {
	ext := filepath.Ext(name)
	newBase := strings.Replace(filepath.Base(name), ext, "/original"+ext, 1)
	newPath := "processed/" + newBase
	return newPath
}