bpms_site/.svn/pristine/42/4216a1dbce097014c6377e1d0f8b506bb8076069.svn-base
2025-11-02 16:38:49 +03:30

7 lines
228 B
Plaintext

/**
* For a given page path, this function ensures that there is no backslash
* escaping slashes in the path. Example:
* - `foo\/bar\/baz` -> `foo/bar/baz`
*/
export declare function normalizePathSep(path: string): string;