mirror of
https://github.com/pnpm/pnpm.git
synced 2026-05-11 01:15:11 -04:00
10 lines
211 B
TypeScript
10 lines
211 B
TypeScript
export default function getNormalizedArch (platform: string, arch: string) {
|
|
if (platform === 'win32' && arch === 'ia32') {
|
|
return 'x86'
|
|
}
|
|
if (arch === 'arm') {
|
|
return 'armv7l'
|
|
}
|
|
return arch
|
|
}
|