Pibd-21_Alekseev_I.S._Inter.../IP/node_modules/has-flag/index.js

9 lines
320 B
JavaScript
Raw Normal View History

2023-12-03 16:59:28 +04:00
'use strict';
2024-01-06 20:33:49 +04:00
module.exports = (flag, argv) => {
argv = argv || process.argv;
2023-12-03 16:59:28 +04:00
const prefix = flag.startsWith('-') ? '' : (flag.length === 1 ? '-' : '--');
2024-01-06 20:33:49 +04:00
const pos = argv.indexOf(prefix + flag);
const terminatorPos = argv.indexOf('--');
return pos !== -1 && (terminatorPos === -1 ? true : pos < terminatorPos);
2023-12-03 16:59:28 +04:00
};