parcoursup/node_modules/has-flag/index.js
lalBi94 7bc56c09b5 $
2023-03-05 13:23:23 +01:00

9 lines
320 B
JavaScript

'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);
};