aboutsummaryrefslogtreecommitdiffstats
path: root/node_modules/detect-libc/lib/process.js
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--node_modules/detect-libc/lib/process.js24
1 files changed, 0 insertions, 24 deletions
diff --git a/node_modules/detect-libc/lib/process.js b/node_modules/detect-libc/lib/process.js
deleted file mode 100644
index ee78ad2..0000000
--- a/node_modules/detect-libc/lib/process.js
+++ /dev/null
@@ -1,24 +0,0 @@
-// Copyright 2017 Lovell Fuller and others.
-// SPDX-License-Identifier: Apache-2.0
-
-'use strict';
-
-const isLinux = () => process.platform === 'linux';
-
-let report = null;
-const getReport = () => {
- if (!report) {
- /* istanbul ignore next */
- if (isLinux() && process.report) {
- const orig = process.report.excludeNetwork;
- process.report.excludeNetwork = true;
- report = process.report.getReport();
- process.report.excludeNetwork = orig;
- } else {
- report = {};
- }
- }
- return report;
-};
-
-module.exports = { isLinux, getReport };