astro-ghostcms/.pnpm-store/v3/files/d4/2fda4cca34a77bb02a183f9cd79...

9 lines
320 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
'use strict';
module.exports = (flag, argv) => {
argv = argv || process.argv;
const prefix = flag.startsWith('-') ? '' : (flag.length === 1 ? '-' : '--');
const pos = argv.indexOf(prefix + flag);
const terminatorPos = argv.indexOf('--');
return pos !== -1 && (terminatorPos === -1 ? true : pos < terminatorPos);
};