All files electron-host-arch.js

0% Statements 0/3
0% Branches 0/4
0% Functions 0/1
0% Lines 0/3
1 2 3 4 5 6 7 8               
export default () => {
  if (process.arch === 'arm' && process.config.variables.arm_version === '7') {
    return 'armv7l';
  }
 
  return process.arch;
};