mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-17 12:11:20 +00:00
21 lines
565 B
TypeScript
21 lines
565 B
TypeScript
import path from "node:path";
|
|
|
|
export function normalizeConfigPath(value: unknown): unknown {
|
|
if (typeof value !== "string" || !path.isAbsolute(value)) {
|
|
return value;
|
|
}
|
|
return path.relative(process.cwd(), value).split(path.sep).join("/");
|
|
}
|
|
|
|
export function normalizeConfigPaths(
|
|
values: readonly unknown[] | string | undefined,
|
|
): unknown[] | undefined {
|
|
if (values === undefined) {
|
|
return undefined;
|
|
}
|
|
if (!Array.isArray(values)) {
|
|
return [normalizeConfigPath(values)];
|
|
}
|
|
return values.map((value) => normalizeConfigPath(value));
|
|
}
|