| /** | |
| * @license | |
| * Copyright 2026 Google Inc. | |
| * SPDX-License-Identifier: Apache-2.0 | |
| */ | |
| /** | |
| * Utility function to build a standard archive filename. | |
| * @public | |
| */ | |
| export function buildArchiveFilename(browser, platform, buildId, extension = 'zip') { | |
| return `${browser}-${platform}-${buildId}.${extension}`; | |
| } | |
| //# sourceMappingURL=provider.js.map |