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

9 lines
291 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 function normalizePathSep(path) {
return path.replace(/\\/g, "/");
}
//# sourceMappingURL=normalize-path-sep.js.map