UNPKG

@grandlinex/react-components

Version:
15 lines (14 loc) 518 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.setBrowserURL = setBrowserURL; // eslint-disable-next-line import/prefer-default-export function setBrowserURL(path, title) { window.document.title = title; if (window.history.replaceState) { // prevents browser from storing history with each change: window.history.replaceState({ pageTitle: title }, title, path); } else { window.history.pushState({ pageTitle: title }, title, path); } }