(result)
| 336 | if (value !== undefined) |
| 337 | job.batch = parsePositiveInt(value, 0); |
| 338 | [value, rest] = takeFlagValue(rest, "--compact-every"); |
| 339 | if (value !== undefined) |
| 340 | Object.assign(job, parseCompactEvery(value)); |
| 341 | const watch = takeAllFlagValues(rest, "--watch"); |
| 342 | job.watchPaths.push(...watch[0].map(stripOuterQuotes).filter(Boolean)); |
| 343 | rest = watch[1]; |
| 344 | const includes = takeAllFlagValues(rest, "--include-file"); |
no outgoing calls
no test coverage detected