Quickly check if a flag is set.
var vlag = require('vlag');
var watching = vlag('watch');
npm install --save vlag
vlag
checks following methods to set the flag:
node script.js --watch # via command line argument
watch=1 node script.js # via environment variable, mixed case
watch=true node script.js
WATCH=1 node script.js # via environment variable, uppercase
WATCH=true node script.js