Commit sur le PC fixe

This commit is contained in:
2023-11-20 11:39:31 +01:00
parent 064e0b34b0
commit 1651f488a0
291 changed files with 28343 additions and 1 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());