()
| 34 | |
| 35 | |
| 36 | export function isLinux () { |
| 37 | if ( isBrowserContext() ) return false |
| 38 | |
| 39 | if ( !hasProcesGlobal() ) return false |
| 40 | |
| 41 | if ( process.platform === 'linux' ) return true |
| 42 | |
| 43 | if ( process.platform === 'openbsd' ) return true |
| 44 | |
| 45 | return false |
| 46 | } |
no test coverage detected