Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
export default function parseArchs(
platform: ForgePlatform | string,
declaredArch: ForgeArch | 'all' | string,
electronVersion: string,
): ForgeArch[] {
if (declaredArch === 'all') {
return allOfficialArchsForPlatformAndVersion(platform, electronVersion) || ['x64'];
}
return declaredArch.split(',') as ForgeArch[];
}