source: imaps-frontend/node_modules/has-flag/index.js@ 0c6b92a

main
Last change on this file since 0c6b92a was 0c6b92a, checked in by stefan toskovski <stefantoska84@…>, 5 weeks ago

Pred finalna verzija

  • 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.