schnee effeckt und fehler Korektur

This commit is contained in:
2023-08-14 17:52:24 +02:00
parent 4a843d4936
commit 79af4e9907
6813 changed files with 343821 additions and 356128 deletions

6
node_modules/signal-exit/index.js generated vendored
View File

@@ -19,7 +19,9 @@ const processOk = function (process) {
// some kind of non-node environment, just no-op
/* istanbul ignore if */
if (!processOk(process)) {
module.exports = function () {}
module.exports = function () {
return function () {}
}
} else {
var assert = require('assert')
var signals = require('./signals.js')
@@ -52,7 +54,7 @@ if (!processOk(process)) {
module.exports = function (cb, opts) {
/* istanbul ignore if */
if (!processOk(global.process)) {
return
return function () {}
}
assert.equal(typeof cb, 'function', 'a callback must be provided for exit handler')