(os: string | undefined)
| 18 | * @returns Normalized OS string (defaults to "linux" if not provided) |
| 19 | */ |
| 20 | export function normalizeDockerOS(os: string | undefined): string { |
| 21 | return os || "linux"; |
| 22 | } |
| 23 | |
| 24 | /** |
| 25 | * Normalizes a Docker platform from manifest format to standard platform string |
no outgoing calls
no test coverage detected