Files
openclaw/scripts/e2e/lib/env-limits.mjs
2026-05-29 02:02:23 +02:00

13 lines
404 B
JavaScript

export function readPositiveIntEnv(name, fallback, env = process.env) {
const raw = env[name] ?? fallback;
const text = raw == null ? "unset" : String(raw).trim();
if (!/^\d+$/u.test(text)) {
throw new Error(`invalid ${name}: ${text}`);
}
const value = Number(text);
if (!Number.isSafeInteger(value) || value <= 0) {
throw new Error(`invalid ${name}: ${text}`);
}
return value;
}