no message

This commit is contained in:
A1300399510
2024-01-26 14:12:45 +08:00
parent 2ff4926405
commit 66eb0364d6
180 changed files with 2837 additions and 13232 deletions

8
.output/server/node_modules/has-flag/index.js generated vendored Normal file
View File

@@ -0,0 +1,8 @@
'use strict';
module.exports = (flag, argv) => {
argv = argv || process.argv;
const prefix = flag.startsWith('-') ? '' : (flag.length === 1 ? '-' : '--');
const pos = argv.indexOf(prefix + flag);
const terminatorPos = argv.indexOf('--');
return pos !== -1 && (terminatorPos === -1 ? true : pos < terminatorPos);
};