mirror of
https://github.com/muerwre/orchidmap-front.git
synced 2025-04-25 02:56:41 +07:00
12 lines
377 B
JavaScript
12 lines
377 B
JavaScript
export const getPath = () => (window.location && window.location.pathname &&
|
|
window.location.pathname.replace(/^\//, ''));
|
|
|
|
export const replacePath = url => window.history.replaceState(url, 'Редактирование маршрута', url);
|
|
|
|
export const getUrlData = () => {
|
|
const url = getPath();
|
|
|
|
const [path, mode] = url.split('/');
|
|
|
|
return { path, mode };
|
|
};
|