LongYinan c0997adba5
Init
2022-01-11 00:11:26 +08:00

14 lines
293 B
JavaScript

// Node.js 10.x, ignore
if (!process.report || typeof process.report.getReport !== 'function') {
process.exit(0)
}
// Only GNU system has this field
const { glibcVersionRuntime } = process.report.getReport().header
if (glibcVersionRuntime) {
process.exit(0)
} else {
process.exit(1)
}