mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-06 05:51:15 +08:00
14 lines
463 B
JavaScript
14 lines
463 B
JavaScript
// Environment limit helpers for E2E subprocess scenarios.
|
|
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;
|
|
}
|