===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
node-meow-8.0.0+~cs3.21.0/index.d.ts-42-		- `isMultiple`: Indicates a flag can be set multiple times. Values are turned into an array. (Default: false)
node-meow-8.0.0+~cs3.21.0/index.d.ts:43:			Multiple values are provided by specifying the flag multiple times, for example, `$ foo -u rainbow -u cat`. Space- or comma-separated values are *not* supported.
node-meow-8.0.0+~cs3.21.0/index.d.ts-44-
##############################################
node-meow-8.0.0+~cs3.21.0/index.d.ts-121-
node-meow-8.0.0+~cs3.21.0/index.d.ts:122:		By default, the argument `5` in `$ foo 5` becomes a string. Enabling this would infer it as a number.
node-meow-8.0.0+~cs3.21.0/index.d.ts-123-
##############################################
node-meow-8.0.0+~cs3.21.0/index.js-23-		if (typeof isFlagRequired !== 'boolean') {
node-meow-8.0.0+~cs3.21.0/index.js:24:			throw new TypeError(`Return value for isRequired callback should be of type boolean, but ${typeof isFlagRequired} was returned.`);
node-meow-8.0.0+~cs3.21.0/index.js-25-		}
##############################################
node-meow-8.0.0+~cs3.21.0/index.js-50-const reportMissingRequiredFlags = missingRequiredFlags => {
node-meow-8.0.0+~cs3.21.0/index.js:51:	console.error(`Missing required flag${missingRequiredFlags.length > 1 ? 's' : ''}`);
node-meow-8.0.0+~cs3.21.0/index.js-52-	for (const flag of missingRequiredFlags) {
node-meow-8.0.0+~cs3.21.0/index.js:53:		console.error(`\t--${flag.key}${flag.alias ? `, -${flag.alias}` : ''}`);
node-meow-8.0.0+~cs3.21.0/index.js-54-	}
##############################################
node-meow-8.0.0+~cs3.21.0/index.js-71-		if (flag.isMultiple) {
node-meow-8.0.0+~cs3.21.0/index.js:72:			flag.type = flag.type ? `${flag.type}-array` : 'array';
node-meow-8.0.0+~cs3.21.0/index.js-73-			flag.default = flag.default || [];
##############################################
node-meow-8.0.0+~cs3.21.0/index.js-85-		if (flagKey !== '--' && !flagValue.isMultiple && Array.isArray(flags[flagKey])) {
node-meow-8.0.0+~cs3.21.0/index.js:86:			throw new Error(`The flag --${flagKey} can only be set once.`);
node-meow-8.0.0+~cs3.21.0/index.js-87-		}
##############################################
node-meow-8.0.0+~cs3.21.0/index.js-154-
node-meow-8.0.0+~cs3.21.0/index.js:155:	help = (description ? `\n  ${description}\n` : '') + (help ? `\n${help}\n` : '\n');
node-meow-8.0.0+~cs3.21.0/index.js-156-
##############################################
node-meow-8.0.0+~cs3.21.0/readme.md-145-- `isMultiple`: Indicates a flag can be set multiple times. Values are turned into an array. (Default: false)
node-meow-8.0.0+~cs3.21.0/readme.md:146:	- Multiple values are provided by specifying the flag multiple times, for example, `$ foo -u rainbow -u cat`. Space- or comma-separated values are [currently *not* supported](https://github.com/sindresorhus/meow/issues/164).
node-meow-8.0.0+~cs3.21.0/readme.md-147-
##############################################
node-meow-8.0.0+~cs3.21.0/readme.md-234-
node-meow-8.0.0+~cs3.21.0/readme.md:235:By default, the argument `5` in `$ foo 5` becomes a string. Enabling this would infer it as a number.
node-meow-8.0.0+~cs3.21.0/readme.md-236-
##############################################
node-meow-8.0.0+~cs3.21.0/test/fixtures/fixture-required-function.js-38-
node-meow-8.0.0+~cs3.21.0/test/fixtures/fixture-required-function.js:39:console.log(`${cli.flags.trigger},${cli.flags.withTrigger}`);
##############################################
node-meow-8.0.0+~cs3.21.0/test/fixtures/fixture-required.js-26-
node-meow-8.0.0+~cs3.21.0/test/fixtures/fixture-required.js:27:console.log(`${cli.flags.test},${cli.flags.number}`);
##############################################
node-meow-8.0.0+~cs3.21.0/hard-rejection/index.js-14-		if (!(error instanceof Error)) {
node-meow-8.0.0+~cs3.21.0/hard-rejection/index.js:15:			error = new Error(`Promise rejected with value: ${util.inspect(error)}`);
node-meow-8.0.0+~cs3.21.0/hard-rejection/index.js-16-		}
##############################################
node-meow-8.0.0+~cs3.21.0/type-fest/.github/contributing.md-17-- Add the type to the readme.
node-meow-8.0.0+~cs3.21.0/type-fest/.github/contributing.md:18:- Run `$ npm test` before submitting and make sure it passes.
node-meow-8.0.0+~cs3.21.0/type-fest/.github/contributing.md-19-- Name the pull request ```Add `TypeName` type```.
##############################################
node-meow-8.0.0+~cs3.21.0/type-fest/readme.md-583-
node-meow-8.0.0+~cs3.21.0/type-fest/readme.md:584:			console.log(`Created ${count + 1} instances of ${Constr.name} class`);
node-meow-8.0.0+~cs3.21.0/type-fest/readme.md-585-
##############################################
node-meow-8.0.0+~cs3.21.0/type-fest/test-d/require-at-least-one.ts-39-	({macos = '', linux = '🐧', windows = '⊞'}) =>
node-meow-8.0.0+~cs3.21.0/type-fest/test-d/require-at-least-one.ts:40:		`${linux} + ${windows} = ${macos}`
node-meow-8.0.0+~cs3.21.0/type-fest/test-d/require-at-least-one.ts-41-);
##############################################
node-meow-8.0.0+~cs3.21.0/debian/tests/test_modules/human-signals/build/src/realtime.js-8-return{
node-meow-8.0.0+~cs3.21.0/debian/tests/test_modules/human-signals/build/src/realtime.js:9:name:`SIGRT${index+1}`,
node-meow-8.0.0+~cs3.21.0/debian/tests/test_modules/human-signals/build/src/realtime.js-10-number:SIGRTMIN+index,
##############################################
node-meow-8.0.0+~cs3.21.0/debian/tests/test_modules/onetime/index.js-21-		} else if (options.throw === true) {
node-meow-8.0.0+~cs3.21.0/debian/tests/test_modules/onetime/index.js:22:			throw new Error(`Function \`${functionName}\` can only be called once`);
node-meow-8.0.0+~cs3.21.0/debian/tests/test_modules/onetime/index.js-23-		}
##############################################
node-meow-8.0.0+~cs3.21.0/debian/tests/test_modules/onetime/index.js-39-	if (!calledFunctions.has(function_)) {
node-meow-8.0.0+~cs3.21.0/debian/tests/test_modules/onetime/index.js:40:		throw new Error(`The given function \`${function_.name}\` is not wrapped by the \`onetime\` package`);
node-meow-8.0.0+~cs3.21.0/debian/tests/test_modules/onetime/index.js-41-	}