(value string)
| 2526 | } |
| 2527 | |
| 2528 | func escapeAppleScriptString(value string) string { |
| 2529 | value = strings.ReplaceAll(value, "\\", "\\\\") |
| 2530 | value = strings.ReplaceAll(value, "\"", "\\\"") |
| 2531 | return value |
| 2532 | } |
| 2533 | |
| 2534 | func safariFrontmostURL() (string, error) { |
| 2535 | script := `tell application "System Events" |
no outgoing calls
no test coverage detected