This commit is contained in:
how2ice
2025-08-16 14:19:20 +09:00
parent 44cca8f122
commit 3b3ae51be4
1474 changed files with 20539 additions and 1058 deletions

7
node_modules/is-binary-path/index.js generated vendored Normal file
View File

@@ -0,0 +1,7 @@
'use strict';
const path = require('path');
const binaryExtensions = require('binary-extensions');
const extensions = new Set(binaryExtensions);
module.exports = filePath => extensions.has(path.extname(filePath).slice(1).toLowerCase());