update, text, response

This commit is contained in:
2025-11-02 11:09:14 +01:00
parent 14776c86b0
commit eed8a4ddcf
2794 changed files with 156786 additions and 129204 deletions

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

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