()
| 221 | } |
| 222 | |
| 223 | const getOS = () => { |
| 224 | const osType = os.type() |
| 225 | |
| 226 | if (osType === 'Darwin') { |
| 227 | return 'darwin' |
| 228 | } else if (osType === 'Linux') { |
| 229 | return 'linux' |
| 230 | } |
| 231 | |
| 232 | return 'windows' |
| 233 | } |
| 234 | |
| 235 | const getBinaryName = () => { |
| 236 | const osType = getOS() |
no outgoing calls
no test coverage detected
searching dependent graphs…