Package Exports
- has-flag
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (has-flag) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
has-flag 
Check if
argv
has a specific flag
Correctly stops looking after an --
argument terminator.
Install
$ npm install --save has-flag
Usage
// foo.js
var hasFlag = require('has-flag');
hasFlag('unicorn');
//=> true
hasFlag('--unicorn');
//=> true
hasFlag('foo=bar');
//=> true
hasFlag('foo');
//=> false
hasFlag('rainbow');
//=> false
$ node foo.js --unicorn --foo=bar -- --rainbow
API
hasFlag(flag, [argv])
Returns a boolean whether the flag exists.
flag
Type: string
CLI flag to look for. The --
prefix is optional.
argv
Type: array
Default: process.argv
CLI arguments.
License
MIT © Sindre Sorhus