source: frontend/node_modules/has-flag/index.js

Last change on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 12 days ago

Fix frontend appearance

  • Property mode set to 100644
File size: 330 bytes
Line 
1'use strict';
2
3module.exports = (flag, argv = process.argv) => {
4 const prefix = flag.startsWith('-') ? '' : (flag.length === 1 ? '-' : '--');
5 const position = argv.indexOf(prefix + flag);
6 const terminatorPosition = argv.indexOf('--');
7 return position !== -1 && (terminatorPosition === -1 || position < terminatorPosition);
8};
Note: See TracBrowser for help on using the repository browser.