openclaw
Version:
Multi-channel AI gateway with extensible messaging integrations
10 lines (9 loc) • 358 B
JavaScript
import { n as parseTcpPort } from "./tcp-port-C3gLZtJi.js";
//#region src/cli/shared/parse-port.ts
/** Re-export the canonical TCP port parser and limit for CLI callers. */
/** Parse a TCP port from unknown CLI/config input, returning null for invalid values. */
function parsePort(raw) {
return parseTcpPort(raw);
}
//#endregion
export { parsePort as t };