()
| 3 | const loadEmbeddedSharp = require('./loadEmbeddedSharp.cjs'); |
| 4 | |
| 5 | function isMuslHost() { |
| 6 | const report = process.report?.getReport?.(); |
| 7 | const glibcVersionRuntime = report?.header?.glibcVersionRuntime; |
| 8 | return process.platform === 'linux' && !glibcVersionRuntime; |
| 9 | } |
| 10 | |
| 11 | function resolveRuntimeAssets() { |
| 12 | if (process.platform !== 'linux' || process.arch !== 'x64') { |
no outgoing calls
no test coverage detected