@optimizely/nuclear-router
Version:
NuclearJS Router
18 lines (15 loc) • 386 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
function pushState() {
return window.history.pushState.apply(window.history, arguments);
}
function replaceState() {
return window.history.replaceState.apply(window.history, arguments);
}
exports.default = {
replaceState: replaceState,
pushState: pushState
};
module.exports = exports["default"];