()
| 11 | const { endianness } = require('os'); |
| 12 | |
| 13 | function isLinuxPPCBE() { |
| 14 | return (process.platform === 'linux') && |
| 15 | (process.arch === 'ppc64') && |
| 16 | (endianness() === 'BE'); |
| 17 | } |
| 18 | |
| 19 | module.exports = { |
| 20 | isCPPSymbolsNotMapped: isWindows || |
no test coverage detected
searching dependent graphs…