Skip to content

Instantly share code, notes, and snippets.

@lamchau
Created November 23, 2015 10:18
Show Gist options
  • Save lamchau/1269d44b6dc72d945c59 to your computer and use it in GitHub Desktop.
Save lamchau/1269d44b6dc72d945c59 to your computer and use it in GitHub Desktop.
var checkOption = function(optionName) {
return process.argv.some(function(option) {
if (option.indexOf("--", 0) === 0 && optionName) {
return option.substr(2).toLowerCase() === optionName.toLowerCase();
}
return false;
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment