13 lines
351 B
JavaScript
13 lines
351 B
JavaScript
/**
|
|
* @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
|