Finalisation de la pgae de création des sessions

This commit is contained in:
2023-11-22 15:19:54 +01:00
parent c7c26f984e
commit ee42c93934
726 changed files with 81699 additions and 4092 deletions

19
node_modules/detect-libc/lib/process.js generated vendored Normal file
View File

@@ -0,0 +1,19 @@
// 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 */
report = isLinux() && process.report
? process.report.getReport()
: {};
}
return report;
};
module.exports = { isLinux, getReport };