(hostname: string)
| 59 | const LOCAL_DAEMON_HOSTNAMES = new Set(["localhost", "127.0.0.1", "::1", "[::1]"]); |
| 60 | |
| 61 | export const canAutoStartLocalDaemonForHost = (hostname: string): boolean => |
| 62 | LOCAL_DAEMON_HOSTNAMES.has(hostname.toLowerCase()); |
| 63 | |
| 64 | /** |
| 65 | * Bun's compiled-binary embedded filesystem root, drive-rooted on Windows |
no outgoing calls
no test coverage detected