📦 deps(thirdparty): update snapshots

This commit is contained in:
ci[bot]
2026-05-29 08:33:53 +00:00
parent fdb52f1e96
commit 06e0d13d57
1615 changed files with 232858 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
/**
* Shared CLI argument parser.
* Used by: ci-review.mjs, run-evals-live.mjs
*/
export function parseArgs(argv) {
const args = {};
for (let i = 0; i < argv.length; i++) {
if (argv[i].startsWith("--")) {
const key = argv[i].slice(2);
if (argv[i + 1] !== undefined && !argv[i + 1].startsWith("--")) {
args[key] = argv[i + 1];
i++;
} else {
args[key] = true;
}
}
}
return args;
}