Repository URL to install this package:
|
Version:
1.7.3 ▾
|
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.getLocationSearch = getLocationSearch;
exports.getLocationPathname = getLocationPathname;
function getLocationSearch() {
return window.location.search;
}
function getLocationPathname() {
return window.location.pathname;
}
var navigateTo = exports.navigateTo = function navigateTo(url) {
window.location = url;
};