📁 File Manager Pro
v10.0.3 | PHP: 8.1.34
Server: Apache
2026-06-21 12:36:59
📂
/ (Root)
/
lib
/
node_modules
/
npm
/
node_modules
/
has-flag
📍 /lib/node_modules/npm/node_modules/has-flag
🔄 Refresh
✏️
Editing: index.js
Read Only
'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); };
💾 Save Changes
❌ Cancel