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

13
node_modules/is-binary-path/index.js generated vendored
View File

@@ -1,12 +1,7 @@
'use strict';
var path = require('path');
var binaryExtensions = require('binary-extensions');
var exts = Object.create(null);
const path = require('path');
const binaryExtensions = require('binary-extensions');
binaryExtensions.forEach(function (el) {
exts[el] = true;
});
const extensions = new Set(binaryExtensions);
module.exports = function (filepath) {
return path.extname(filepath).slice(1).toLowerCase() in exts;
};
module.exports = filePath => extensions.has(path.extname(filePath).slice(1).toLowerCase());