mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-01 11:43:31 +00:00
18 lines
441 B
TypeScript
18 lines
441 B
TypeScript
/** Plugin-local re-export of shared path safety helpers for plugin install/runtime code. */
|
|
export {
|
|
isNotFoundPathError,
|
|
hasNodeErrorCode,
|
|
isNodeError,
|
|
isPathInside,
|
|
isPathInsideWithRealpath,
|
|
isSymlinkOpenError,
|
|
isWithinDir,
|
|
normalizeWindowsPathForComparison,
|
|
resolveSafeBaseDir,
|
|
resolveSafeRelativePath,
|
|
safeRealpathSync,
|
|
safeStatSync,
|
|
splitSafeRelativePath,
|
|
formatPosixMode,
|
|
} from "../infra/path-safety.js";
|